更新高德地图的问题
Showing
3 changed files
with
8 additions
and
11 deletions
| ... | @@ -17,10 +17,7 @@ | ... | @@ -17,10 +17,7 @@ |
| 17 | android:supportsRtl="true" | 17 | android:supportsRtl="true" |
| 18 | android:theme="@style/AppTheme"> | 18 | android:theme="@style/AppTheme"> |
| 19 | <activity android:name=".BootActivity" > | 19 | <activity android:name=".BootActivity" > |
| 20 | <intent-filter> | 20 | |
| 21 | <action android:name="android.intent.action.MAIN" /> | ||
| 22 | <category android:name="android.intent.category.LAUNCHER" /> | ||
| 23 | </intent-filter> | ||
| 24 | </activity> | 21 | </activity> |
| 25 | <activity | 22 | <activity |
| 26 | android:name=".MainActivity" | 23 | android:name=".MainActivity" |
| ... | @@ -29,7 +26,10 @@ | ... | @@ -29,7 +26,10 @@ |
| 29 | android:theme="@style/AppTheme.NoActionBar"> <!-- 禁止屏幕旋转 --> | 26 | android:theme="@style/AppTheme.NoActionBar"> <!-- 禁止屏幕旋转 --> |
| 30 | </activity> | 27 | </activity> |
| 31 | <activity android:name=".GoogleMapActivity"> | 28 | <activity android:name=".GoogleMapActivity"> |
| 32 | 29 | <intent-filter> | |
| 30 | <action android:name="android.intent.action.MAIN" /> | ||
| 31 | <category android:name="android.intent.category.LAUNCHER" /> | ||
| 32 | </intent-filter> | ||
| 33 | </activity> | 33 | </activity> |
| 34 | <activity android:name=".BaiduMapActivity"> | 34 | <activity android:name=".BaiduMapActivity"> |
| 35 | 35 | ... | ... |
| ... | @@ -31,11 +31,7 @@ public enum TianDiTuLayerTypes implements BaseTiledMapServiceType { | ... | @@ -31,11 +31,7 @@ public enum TianDiTuLayerTypes implements BaseTiledMapServiceType { |
| 31 | /** | 31 | /** |
| 32 | * 地形注记 | 32 | * 地形注记 |
| 33 | */ | 33 | */ |
| 34 | CTA_C, | 34 | CTA_C; |
| 35 | /** | ||
| 36 | * 浙江省矢量图 | ||
| 37 | */ | ||
| 38 | VEC_C_ZJ; | ||
| 39 | 35 | ||
| 40 | public void setName() | 36 | public void setName() |
| 41 | { | 37 | { | ... | ... |
| ... | @@ -19,7 +19,8 @@ public class AppInfo { | ... | @@ -19,7 +19,8 @@ public class AppInfo { |
| 19 | 19 | ||
| 20 | public static SQLiteDatabase mapcachedb; | 20 | public static SQLiteDatabase mapcachedb; |
| 21 | 21 | ||
| 22 | public static Point initPoint = new Point(121.557167, 21.87); | 22 | // 天安门广场 |
| 23 | public static Point initPoint = new Point(116.391478, 39.903177); | ||
| 23 | 24 | ||
| 24 | public static double initRes = TDTTileinfo.getRes4490()[17]; | 25 | public static double initRes = TDTTileinfo.getRes4490()[17]; |
| 25 | // public static double initRes = TDTTileinfo.getRes4326()[6]; | 26 | // public static double initRes = TDTTileinfo.getRes4326()[6]; | ... | ... |
-
Please register or sign in to post a comment