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
ba979c7f
authored
2018-04-02 14:37:27 +0800
by
chiangbt
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修正了lod中的一个问题
1 parent
85b62c7c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
app/src/main/java/com/pashanhoo/landsurvey/layers/tencent/TencentMapLayerTypes.java
app/src/main/java/com/pashanhoo/landsurvey/layers/tencent/TencentMapsTiledServiceLayer.java
app/src/main/java/com/pashanhoo/landsurvey/layers/tencent/TencentMapLayerTypes.java
View file @
ba979c7
...
...
@@ -7,7 +7,6 @@ public enum TencentMapLayerTypes implements BaseTiledMapServiceType {
* 腾讯矢量图层(含路网,含注记)
*/
TENCENT_MAP_VECTOR
,
/**
* 腾讯矢量夜间图层(含路网,含注记)
*/
...
...
app/src/main/java/com/pashanhoo/landsurvey/layers/tencent/TencentMapsTiledServiceLayer.java
View file @
ba979c7
...
...
@@ -33,7 +33,8 @@ public class TencentMapsTiledServiceLayer extends TiledServiceLayer {
private
static
final
double
XMax
=
116.65036000000009
;
private
static
final
double
YMax
=
36.36647000000005
;
private
static
final
double
[]
res
=
{
156543.03392800014
,
private
static
final
double
[]
res
=
{
156543.03392800014
,
78271.516963999937
,
39135.758482000092
,
19567.879240999919
,
...
...
@@ -54,7 +55,8 @@ public class TencentMapsTiledServiceLayer extends TiledServiceLayer {
0.59716428355981721
,
0.29858214164761665
};
private
static
final
double
[]
scale
=
{
591657527.591555
,
private
static
final
double
[]
scale
=
{
591657527.591555
,
295828763.79577702
,
147914381.89788899
,
73957190.948944002
,
...
...
@@ -73,12 +75,11 @@ public class TencentMapsTiledServiceLayer extends TiledServiceLayer {
9027.9774109999998
,
4513.9887049999998
,
2256.994353
,
1128.497176
0000001
};
1128.497176
};
private
static
String
URL
=
"http://maps.iwxlh.com"
;
private
ResponseListener
responseListener
;
private
static
Point
origin
=
new
Point
(-
20037508.342787
,
20037508.342787
);
private
ResponseListener
responseListener
;
private
TencentMapLayerTypes
tencentMapLayerTypes
;
public
TencentMapsTiledServiceLayer
(
TencentMapLayerTypes
layerType
)
{
...
...
Please
register
or
sign in
to post a comment