对于gmaps4rails滑爽地图(Slippy maps for gmaps4rails)

2019-07-30 07:43发布

我认为这将是不错的使用OpenStreetMap的(或OpenCycleMap)作为谷歌API内的地图瓦片提供商。 下面是如何在这个普通的JavaScript做一个例子:

<script type="text/javascript">
        var element = document.getElementById("map");

        /*
        Build list of map types.
        You can also use var mapTypeIds = ["roadmap", "satellite", "hybrid", "terrain", "OSM"]
        but static lists sucks when google updates the default list of map types.
        */
        var mapTypeIds = [];
        for(var type in google.maps.MapTypeId) {
            mapTypeIds.push(google.maps.MapTypeId[type]);
        }
        mapTypeIds.push("OSM");

        var map = new google.maps.Map(element, {
            center: new google.maps.LatLng(48.1391265, 11.580186300000037),
            zoom: 11,
            mapTypeId: "OSM",
            mapTypeControlOptions: {
                mapTypeIds: mapTypeIds
            }
        });

        map.mapTypes.set("OSM", new google.maps.ImageMapType({
            getTileUrl: function(coord, zoom) {
                return "http://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
            },
            tileSize: new google.maps.Size(256, 256),
            name: "OpenStreetMap",
            maxZoom: 18
        }));
    </script>

http://wiki.openstreetmap.org/wiki/Google_Maps_Example

这样,人们可以有一个OSM地图(这看起来例如徒步或骑自行车的目的漂亮很多)与谷歌地图类型和更漂亮谷歌的界面相结合,再加上所有的是仅适用于谷歌地图的方法和选项gmaps4rails(例如聚类等)。

我试图找出如何实现这一点,但它是坦言有点过我的头。

有其他人试图实现类似的东西?

编辑:我想出一个办法来达到我想要的。 它不漂亮,但我想我应该反正它张贴,所以也许别人能想出更好的想法。

gmaps4rails.base.js.coffee我加入这个方法:

create_OSM : ->
OSMMapTypeOptions = new google.maps.ImageMapType(
  getTileUrl: (coord, zoom) ->
    "http://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png"
  tileSize: new google.maps.Size(256, 256)
  name: "OSM"
  maxZoom: 18
)
@serviceObject.mapTypes.set("OSM", OSMMapTypeOptions)
CycleMapTypeOptions = new google.maps.ImageMapType(
  getTileUrl: (coord, zoom) ->
    "http://tile.opencyclemap.org/cycle/" + zoom + "/" + coord.x + "/" + coord.y + ".png"
  tileSize: new google.maps.Size(256, 256)
  name: "Cycle"
  maxZoom: 18
)
@serviceObject.mapTypes.set("OCM", CycleMapTypeOptions)
@serviceObject.setMapTypeId("OSM")

js_builder.rb我添加这样的方法调用@js << "#{gmap_id}.create_OSM();" 刚过@js << "#{gmap_id}.initialize();"

最后,我的观点的代码如下所示:

 <%= gmaps("markers" => {"data" => @json},
                "map_options" => {"type" => "TERRAIN", :raw => '{mapTypeControlOptions: {mapTypeIds: [google.maps.MapTypeId.ROADMAP, google.maps.MapTypeId.TERRAIN, "OSM", "OCM"], style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}}'}) %>

它的工作原理,我很高兴的结果。 需要一些严肃的清理和重构,虽然。 任何commments?

文章来源: Slippy maps for gmaps4rails