You need to sign in to do that
Don't have an account?
Kush Patel 5
Coordinates with <apex:mapMarker>
I would like to be able to mark spots on my map using a marker by drawing out information from a geolocation field but everytime I use !Account.Geocode__c it gives me this error
Error: Unsupported type: common.api.soap.wsdl.Location used in expression: Account.Geocode__c
Can anyone help me
Error: Unsupported type: common.api.soap.wsdl.Location used in expression: Account.Geocode__c
Can anyone help me
<apex:page standardController="Account"> <apex:map width="100%" height="400px" mapType="hybrid" zoomLevel="15" center="{!Account.BillingStreet},{!Account.BillingCity},{!Account.BillingState}"> <apex:mapMarker position="{latitude:{!Account.Location},longitude:{Geocode__c}}"/> </apex:map> </apex:page>
Saravana Rajkumar 16
What is the data type of the fields Account.Location and Geocode__c?