where _Map is defined in its .xaml.cs file: private MainPage _Parent; private Map _Map;
#region Public Methods public Overview() { InitializeComponent(); ... }
public void SetMap(Map TheMap) { _Map = TheMap; }
public void SetParent(MainPage TheParent) { _Parent = TheParent; }
However, the Overview Map is still empty. I debugged, and observed that _Map contains 4 layers (not null). There must be something missing for the binding. If you know, please point it our. Thanks.