使用谷歌地图API的自己的地图图块

时间:2014-06-22 12:04:20

标签: javascript html api

我有这段代码:

<!DOCTYPE html>
<html>
  <head>
    <title>Image map types</title>
    <style>
      html, body, #map-canvas {
        height: 100%;
        margin: 0px;
        padding: 0px
      }
    </style>
    <script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
    <script>
var moonTypeOptions = {
  getTileUrl: function(coord, zoom) {
      var normalizedCoord = getNormalizedCoord(coord, zoom);
      if (!normalizedCoord) {
        return null;
      }
      var bound = Math.pow(2, zoom);
      return 'http://mw1.google.com/mw-planetary/lunar/lunarmaps_v1/clem_bw' +
          '/' + zoom + '/' + normalizedCoord.x + '/' +
          (bound - normalizedCoord.y - 1) + '.jpg';
  },
  tileSize: new google.maps.Size(256, 256),
  maxZoom: 9,
  minZoom: 0,
  radius: 1738000,
  name: 'Moon'
};

var moonMapType = new google.maps.ImageMapType(moonTypeOptions);

function initialize() {
  var myLatlng = new google.maps.LatLng(0, 0);
  var mapOptions = {
    center: myLatlng,
    zoom: 1,
    streetViewControl: false,
    mapTypeControlOptions: {
      mapTypeIds: ['moon']
    }
  };

  var map = new google.maps.Map(document.getElementById('map-canvas'),
      mapOptions);
  map.mapTypes.set('moon', moonMapType);
  map.setMapTypeId('moon');
}

// Normalizes the coords that tiles repeat across the x axis (horizontally)
// like the standard Google map tiles.
function getNormalizedCoord(coord, zoom) {
  var y = coord.y;
  var x = coord.x;

  // tile range in one direction range is dependent on zoom level
  // 0 = 1 tile, 1 = 2 tiles, 2 = 4 tiles, 3 = 8 tiles, etc
  var tileRange = 1 << zoom;

  return {
    x: x,
    y: y
  };
}

google.maps.event.addDomListener(window, 'load', initialize);

      </script>
  </head>
  <body>
    <div id="map-canvas"></div>
  </body>
</html>

我想将背景图像更改为我自己的图像但每次更改路径时它都会停止工作。

有人可以告诉我如何将路径正确更改为/Users/Chris/Pictures/test1.jpg吗?

1 个答案:

答案 0 :(得分:0)

您需要在Mercator系统中生成地理配准图块并提供这些图块的链接。

此视频中显示了最简单的分步教程,如何为硬盘上的JPEG图像执行此操作:

Map overlay step-by-step

https://www.youtube.com/watch?v=eJxdCe9CNYg

正在使用http://www.maptiler.com/实用程序,它会为您生成一个示例googlemaps.html查看器。

您也可以使用开源软件(例如我的GDAL2Tiles实用程序)创建切片,或使用您自己的软件创建切片:http://www.maptiler.org/google-maps-coordinates-tile-bounds-projection/