简体   繁体   中英

How to remove Ammap map control overlay?

How can I remove the controls for panning and zooming when displaying my AmMap? Is there a field I can change when creating my map object or do I have to manually alter the library code?

You can disable the pan/zoom buttons using the zoomControl fields when creating the map:

mapObj = new AmCharts.AmMap()
mapObj.zoomControl = {
       zoomControlEnabled: false,
       panControlEnabled: false
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM