You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Kingo.Plugin.MapView.Interface;
|
|
|
|
|
using Kingo.PluginServiceInterface;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Kingo.Plugin.MapView.Common
|
|
|
|
|
{
|
|
|
|
|
public class EnvironmentVariables
|
|
|
|
|
{
|
|
|
|
|
private EnvironmentVariables()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static readonly EnvironmentVariables instance = new EnvironmentVariables();
|
|
|
|
|
|
|
|
|
|
public static EnvironmentVariables Instance
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当前操作的地图
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ICameraPoint cameraPoint { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|