浏览代码

在线地图源更换为腾讯地图;修复了文化地图白边问题

napier 3 年之前
父节点
当前提交
fa6c092963
共有 2 个文件被更改,包括 46 次插入24 次删除
  1. 42 20
      src/components/map.vue
  2. 4 4
      static/js/axios-config.js

+ 42 - 20
src/components/map.vue

@@ -239,34 +239,56 @@ export default {
       map = new Map({
         target: 'mapview',
         layers: [
-          //  天地图 地图
+          //  QQ Map
+          /* eslint-disable */
           new TileLayer({
-            class: 'basemap',
-            title: 'tiandi',
-            source: new XYZ({
-              url: 'https://t3.tianditu.gov.cn/DataServer?T=vec_w&x={x}&y={y}&l={z}&tk=a7baca459fe5be059d34849072e84fd0'
-            }),
-            visible: true
-            // nameCN: '在线地图'
+              source: new XYZ({
+                  class: 'basemap',
+                  title: 'tiandi',
+                  tileUrlFunction: function(xyz){
+                      if (!xyz) {
+                        return ''
+                      }
+                      console.log("xyz:", xyz)
+                      var z = xyz[0]
+                      var x = xyz[1]
+                      var y = xyz[2]
+                      y = Math.pow(2, z) - 1 - y
+                      console.log(x,y,z)
+                      return "http://rt1.map.gtimg.com/realtimerender?z="
+                        + z + "&x=" + x + "&y=" + y + 
+                        "&type=vector&style=0"
+                  }
+              })
           }),
+
+          //  天地图 矢量地图
+          // new TileLayer({
+          //   class: 'basemap',
+          //   title: 'tiandi',
+          //   source: new XYZ({
+          //     url: 'https://t3.tianditu.gov.cn/DataServer?T=vec_w&x={x}&y={y}&l={z}&tk=a7baca459fe5be059d34849072e84fd0'
+          //   }),
+          //   visible: true
+          //   // nameCN: '在线地图'
+          // }),
+  
           //  天地图 地图标注
-          new TileLayer({
-            class: 'basemap',
-            title: 'tiandi',
-            source: new XYZ({
-              url: 'https://t3.tianditu.gov.cn/DataServer?T=cva_w&x={x}&y={y}&l={z}&tk=a7baca459fe5be059d34849072e84fd0'
-            }),
-            visible: true
-            // nameCN: '天地图标注'
-          }),
+          // new TileLayer({
+          //   class: 'basemap',
+          //   title: 'tiandi',
+          //   source: new XYZ({
+          //     url: 'https://t3.tianditu.gov.cn/DataServer?T=cva_w&x={x}&y={y}&l={z}&tk=a7baca459fe5be059d34849072e84fd0'
+          //   }),
+          //   visible: true
+          //   // nameCN: '天地图标注'
+          // }),
+
           // 文化地图
           new TileLayer({
             class: 'basemap',
             title: 'cdut',
             source: new TileSource({
-              // url: 'http://cn-cd-ali-1.natfrp.cloud:10265/geoserver/CDUT/wms',
-              // url: 'http://113.125.147.162:8081/geoserver/CDUT/wms',
-              // url: 'http://139.155.247.43/geoserver/CDUT/wms',
               url: 'https://geo.itopmap.com/geoserver/CDUT/wms',
               crossOrigin: 'anonymous',
               params: {

+ 4 - 4
static/js/axios-config.js

@@ -7,10 +7,10 @@
 
 export default {
   install (Vue) {
-    // 请求前缀
-    // Vue.prototype.$axios.defaults.baseURL = 'http://127.0.0.1:300'
-    // Vue.prototype.$axios.defaults.baseURL = 'http://42.193.189.65:300'
-    // test
+    //  请求前缀
+    //  http
+    // Vue.prototype.$axios.defaults.baseURL = 'http://139.155.20.56:300'
+    //  https
     // Vue.prototype.$axios.defaults.baseURL = 'http://139.155.20.56:300'
     Vue.prototype.$axios.defaults.baseURL = 'https://server.itopmap.com'