Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
蒋波涛
/
landsurvey
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
460aec20
authored
2018-03-31 09:30:47 +0800
by
chiangbt
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
标注更新
1 parent
f92a2b3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
8 deletions
.idea/misc.xml
readme.md
.idea/misc.xml
View file @
460aec2
...
...
@@ -24,7 +24,7 @@
</value>
</option>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_
7
"
project-jdk-name=
"1.8"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_
8
"
project-jdk-name=
"1.8"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/build/classes"
/>
</component>
<component
name=
"ProjectType"
>
...
...
readme.md
View file @
460aec2
#
#
LandSurvey 项目
# LandSurvey 项目
基于ArcGIS Android 10.2.9开发
-
使用天地图数据(CGCS2000)
-
使用天地图本地缓存数据(Mbtiles)
-
实现了缩放功能
-
实现了GPS定位
开发者:蒋波涛
Email:chiangbt@geoportal.cn
## 图层类型说明
##
1、
图层类型说明
天地图图层(CGCS2000)
...
...
@@ -53,8 +51,14 @@ GeoQ地图层
-
AMAP_ROAD,高德路网图层(含路网,含注记)
-
AMAP_TRAFFIC,高德实时交通图层
百度地图
-
BaiduMapsTiledServiceLayer
-
BAIDU_VECTOR,百度矢量
-
BAIDU_IMAGE,百度影像
-
BAIDU_ROAD,百度路网
-
BAIDU_TRAFFIC,百度交通
## 基本用法
##
2、
基本用法
天地图2000
```
java
...
...
@@ -63,7 +67,11 @@ mapView.addLayer(t_vec);
Point
initPoint
=
new
Point
(
121.56
,
29.862149
);
mapView
.
zoomToResolution
(
initPoint
,
t_vec
.
getRes
()[
16
]);
```
百度地图
目前百度地图的图层可以正确加载,但图上坐标偏移很大,需要进一步解决。
```java
BaiduMapsTiledServiceLayer baiduMapsTiledServiceLayer = new BaiduMapsTiledServiceLayer(BaiduMapLayerTypes.BAIDU_VECTOR);
mapView.addLayer(baiduMapsTiledServiceLayer);
...
...
Please
register
or
sign in
to post a comment