我现在使用node.js平台。我想使用googlemap集群库。但是我无法执行源代码。
googlemaps cluster api url:https://github.com/googlemaps/js-marker-clusterer
这个图书馆的索引在下面。
在示例目录中,我想测试一个“simple_example.html”。
我的node.js源代码如下。
[app.js]
var express = require("express");
var app = express();
app.set('view engine','ejs');
var path = require("path");
app.set("public", path.join(__dirname, "public"));
app.get('/', function(req, res){
res.render("simple_example", {} )
});
app.listen(3000);
console.log("Running at Port 3000");
[simple_example.ejs](重要的脚本部分)
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script src="public/data.json"></script>
<script type="text/javascript" src="public/src/markerclusterer.js"></script>
<script>
function initialize() {
var center = new google.maps.LatLng(37.4419, -122.1419);
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 3,
center: center,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var markers = [];
for (var i = 0; i < 100; i++) {
var dataPhoto = data.photos[i];
var latLng = new google.maps.LatLng(dataPhoto.latitude,
dataPhoto.longitude);
var marker = new google.maps.Marker({
position: latLng
});
markers.push(marker);
}
var markerCluster = new MarkerClusterer(map, markers, {imagePath: 'public/images/m'});
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
此图片是我的源代码执行的结果。但是图片没有在地图中销售。我预计图片在下面。
我尝试了src的路径更改,更改了web平台(作为python),但我无法解决问题。谁知道解决方案?
答案 0 :(得分:0)
创建标记群集后,使用addMarker()
方法或向构造函数提供一系列标记来支持它。
当他们说通过提供一系列标记来向构造函数添加标记时,它就像这样做:
var markers = []; //create a global array where you store your markers
for (var i = 0; i < 100; i++) {
var latLng = new google.maps.LatLng(data.photos[i].latitude,
data.photos[i].longitude);
var marker = new google.maps.Marker({'position': latLng});
markers.push(marker); //push individual marker onto global array
}
var markerCluster = new MarkerClusterer(map, markers); //create clusterer and push the global array of markers into it.
要使用addMarker()添加它,您基本上将其添加到群集中,如下所示:
var markerCluster //cluster object created on global scope
//do your marker creation and add it like this:
markerCluster.addMarker(newMarker, true); //if specify true it'll redraw the map
以下是对MarkerCluster的引用:https://googlemaps.github.io/js-marker-clusterer/docs/examples.html
此外,这是一个演示应用程序如何使用markercluster:https://github.com/googlemaps/js-marker-clusterer