Google map control with support for showing specific address or location (longitude / latitude) and configuratable map zoom.
If you need any feature which is not currently supported, then please create an issue.
It`s nessesary to provide your Google API key.
Api key can be obtained using this tutorial.
config.AddContribGoogleMapConfiguration(@"GOOGLE API KEY");
Showing specific address
Hardcoded
<dc:GoogleMap Address="Chicken Dinner Rd Idaho 83607, USA" />
Binding
<dc:GoogleMap Address="{value: Address}" />
Showing specific location
Hardcoded
<dc:GoogleMap Longitude="-116.7723588" Latitude="43.5766682"/>
Binding
<dc:GoogleMap Longitude="{value: Longitude}" Latitude="{value: Latitude}"/>
Showing specific location
Hardcoded
<dc:GoogleMap Address="Chicken Dinner Rd Idaho 83607, USA" MapZoom="20"/>
Binding
<dc:GoogleMap Address="Chicken Dinner Rd Idaho 83607, USA" MapZoom="{value: Zoom}"/>