Last active
October 9, 2015 15:41
-
-
Save cdcarter/be8986e4140d3bb59d08 to your computer and use it in GitHub Desktop.
Custom Object Page Layout Map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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