private async void FlashFeaturesAsync(IReadOnlyDictionary<BasicFeatureLayer, List<long>> flashFeatures)
		{
			//Get the active map view.
			var mapView = MapView.Active;
			if (mapView == null)
				return;
			await QueuedTask.Run(() =>
			{
				//Flash the collection of features.
				mapView.FlashFeature(flashFeatures);
			});
		}

  

相关文章:

  • 2021-05-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-26
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案