我认为将OpenStreetMap(或OpenCycleMap)用作google 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}}'}) %>
它有效,我对结果很满意。虽然需要一些严肃的清理和重构。任何意见?