示例#1
0
 private void RefreshAllTiles()
 {
     MarkAllTilesDirty();
     Device.BeginInvokeOnMainThread(() =>
     {
         TileOverlay.ClearTileCache();
     });
 }
示例#2
0
 private void ResetAllTiles()
 {
     RemoveAllTiles();
     Device.BeginInvokeOnMainThread(() =>
     {
         TileOverlay.ClearTileCache();
     });
 }
示例#3
0
    void UpdateHeatmapProperties()
    {
        CenterCamera(DemoUtils.MelbourneLatLng);

        _heatmap.FadeIn       = true;
        _heatmap.ZIndex       = 1;
        _heatmap.Transparency = 0.5f;
        _heatmap.IsVisible    = true;

        _heatmap.ClearTileCache();
    }