是否可以在谷歌地图上放置约500,000个叠加层

时间:2017-01-10 16:31:59

标签: javascript css google-maps dom google-maps-api-3

我需要在地图上放置大约500,000个对象,例如<div><a><img>

但如果我只放置2,000个对象作为叠加层,我的地图会崩溃。

我该怎么办?

var srcImage = 'img/catalog-6.png';

var b = 1;
var a = 1;

var bounds = [10000];
var overlay = [10000]
var good;

for(i = 1; i < 1000; i++) {
  bounds[i] = new google.maps.LatLngBounds(
    new google.maps.LatLng(b, b),
    new google.maps.LatLng(a, a));
  b = 1;
  a = 1;
  overlay = new firstpixel(bounds[i], srcImage, map);
  good++;
  console.log(i);
}

0 个答案:

没有答案