好吧,我正在尝试对谷歌地图上的标记进行聚类。我找到了这个例子http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerclusterer/1.0/examples/simple_example.html 但我无法理解下面代码的使用-
<script type="text/javascript">
var script = '<script type="text/javascript" src="../src/markerclusterer';
if (document.location.search.indexOf('packed') !== -1) {
script += '_packed';
}
if (document.location.search.indexOf('compiled') !== -1) {
script += '_compiled';
}
script += '.js"><' + '/script>';
document.write(script);
</script>
那里使用的完整 src 是什么。当我复制代码并在我的笔记本电脑上使用它时,它不起作用。请解释为什么?以及在谷歌地图上进行标记聚类的最佳方法是什么。