ba979c7f by chiangbt

修正了lod中的一个问题

1 parent 85b62c7c
......@@ -7,7 +7,6 @@ public enum TencentMapLayerTypes implements BaseTiledMapServiceType {
* 腾讯矢量图层(含路网,含注记)
*/
TENCENT_MAP_VECTOR,
/**
* 腾讯矢量夜间图层(含路网,含注记)
*/
......
......@@ -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.4971760000001};
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) {
......