Hi,
I'm looking for a sample that when I double click a selected state, the map is zoomed in at street level of that state. I tried MyMap.Zoom(), but sometimes the selected state is out of view. Is there a way we can get the position of the selected state and zoom in the middle?
I also create a context menu which has Drill down option, clicking on this option will do the same as above. Again, I want to do what I state above, but haven't found a way :(.
The drill down event handler method:
void drillDownMenuItem_Click(object sender, RoutedEventArgs e)
{
MyMap.Zoom(2.0); //test
}
Thanks!!