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
Kush Patel 5Kush 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
 
<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 16Saravana Rajkumar 16
What is the data type of the fields Account.Location and Geocode__c?