Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Polymaps.js库来制作地图。能够观察图层上的缩放级别变化将非常有用。我试图保持一层按米值缩放的点,所以每当缩放级别发生变化时,我都需要重新计算半径。
我正在使用“移动”功能,我认为它也是在缩放时触发的。也有可能开启“缩放”功能。我认为有。
例如:
// whenever the map moves... map.on("move", function() { // get the current zoom var z = map.zoom(); // show/hide parcels parcels.visible(z >= 16); });