-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
93 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.king.map.maphelper" /> | ||
package="com.king.map.maphelper"> | ||
|
||
<queries> | ||
<!-- 高德地图 --> | ||
<package android:name="com.autonavi.minimap" /> | ||
<!-- 百度地图 --> | ||
<package android:name="com.baidu.BaiduMap" /> | ||
<!-- 腾讯地图 --> | ||
<package android:name="com.tencent.map" /> | ||
<!-- 谷歌地图 --> | ||
<package android:name="com.google.android.apps.maps" /> | ||
</queries> | ||
|
||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package com.king.map.maphelper | ||
|
||
import android.os.Parcelable | ||
import kotlinx.android.parcel.Parcelize | ||
import kotlinx.parcelize.Parcelize | ||
|
||
/** | ||
* 坐标经纬度 | ||
* | ||
* @param lat 纬度 | ||
* @param lng 经度 | ||
* @param latitude 纬度 | ||
* @param longitude 经度 | ||
* | ||
* @author <a href="mailto:[email protected]">Jenly</a> | ||
*/ | ||
@Parcelize | ||
data class LatLng(val lat: Double, val lng: Double) : Parcelable | ||
data class LatLng(val latitude: Double, val longitude: Double) : Parcelable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters