Skip to content

Instantly share code, notes, and snippets.

@cdcarter
Last active October 9, 2015 15:41
Show Gist options
  • Save cdcarter/be8986e4140d3bb59d08 to your computer and use it in GitHub Desktop.
Save cdcarter/be8986e4140d3bb59d08 to your computer and use it in GitHub Desktop.
Custom Object Page Layout Map
<apex:page standardController="Venue__c">
<apex:map width="400px" height="400px" mapType="roadmap"
center="{!Venue__c.City__c},{!Venue__c.State__c}">
<apex:mapMarker title="{! Venue__c.Name }"
position="{!Venue__c.Street__c},{!Venue__c.City__c},{!Venue__c.State__c}"/>
</apex:map>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment