1: <%@ Register Assembly="Marvici.Maps" Namespace="Marvici.Maps" TagPrefix="marvici" %> 2: 3: <marvici:YahooMap ID="YahooMap" runat="server" Width="100%" Height="325" />
1: 'Constants.YahooAppID = Your Yahoo AppID 2: Dim GeoAddress As Marvici.Maps.GeoCode.GeoAddress = _ 3: Marvici.Maps.GeoCode.GeoLocate.Execute(FullAddress, Constants.YahooAppID) 4: YahooMap.YahooAppID = Constants.YahooAppID 5: YahooMap.Latitude = GeoAddress.Latitude 6: YahooMap.Longitude = GeoAddress.Longitude 7: YahooMap.ShowMapTypeControls = True 8: YahooMap.ShowZoomPanControls = True 9: YahooMap.Zoom = 4 10: YahooMap.MapType = YahooMapType.YAHOO_MAP_HYB