function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nida Khan 5Nida Khan 5 

Is there a limit on the amount of account that the google map can show on visualforce page?

Hello All,

Please reply for this question.
Pun!5h3rPun!5h3r
Hi Nida,

You can display up to 100 markers on the map using apex:mapMarker tag with apex:map, however, there is a limit of 10 geocoding requests per map. So you will need to geocode your addresses first, and then set position attribute for the apex:mapMarker using latitude and longitude instead of the address.

Thanks
Nida Khan 5Nida Khan 5
Hello Pun!5h3r,

Thanks