You need to sign in to do that
Don't have an account?

How to load multiple markers on google maps using visualforce page
I want to display around 40k markers on the map. I tried like this but maximum is 10 (i read in documentation this is some sort of a limitation).
Here is my code:
<apex:page standardController="Account" recordSetVar="accounts" >
<apex:map width="1200px" height="1000px" mapType="roadmap"
center="42.23 42.23">
<apex:repeat value="{! accounts }" var="acc">
<apex:mapMarker title="{! acc.Name }" position="{!acc.BillingLatitude}, {!acc.BillingLongitude},{!acc.BillingCity}, {!acc.Billing_Zip_Postal_Code__c}" />
</apex:repeat>
</apex:map>
</apex:page>
Is there any posibility to do that ?
Here is my code:
<apex:page standardController="Account" recordSetVar="accounts" >
<apex:map width="1200px" height="1000px" mapType="roadmap"
center="42.23 42.23">
<apex:repeat value="{! accounts }" var="acc">
<apex:mapMarker title="{! acc.Name }" position="{!acc.BillingLatitude}, {!acc.BillingLongitude},{!acc.BillingCity}, {!acc.Billing_Zip_Postal_Code__c}" />
</apex:repeat>
</apex:map>
</apex:page>
Is there any posibility to do that ?
https://cloud.google.com/maps-platform/pricing/sheet/
Hope this helps.
All Answers
Follow the below link and try as suggested by Bertrandn and you should be able to achieve what you looking for.
https://developer.salesforce.com/forums/?id=906F0000000g2zZIAQ
Hope this helps!.
Regards,
Santosh.
https://cloud.google.com/maps-platform/pricing/sheet/
Hope this helps.