namespace Yw.WinFrmUI
|
{
|
/// <summary>
|
///
|
/// </summary>
|
internal class MapUrlHelper
|
{
|
|
/// <summary>
|
/// 查看标记url
|
/// </summary>
|
public static string ViewMarkerUrl
|
{
|
get
|
{
|
return AppDomain.CurrentDomain.BaseDirectory + @"map\gaode\html\ViewMarker.html";
|
}
|
}
|
|
/// <summary>
|
/// 设置标记url
|
/// </summary>
|
public static string SetMarkerUrl
|
{
|
get
|
{
|
return AppDomain.CurrentDomain.BaseDirectory + @"map\gaode\html\SetMarker.html";
|
}
|
}
|
|
|
/// <summary>
|
/// 简单设置标记url
|
/// </summary>
|
public static string SetSimpleMarkerUrl
|
{
|
get
|
{
|
return AppDomain.CurrentDomain.BaseDirectory + @"map\gaode\html\SetSimpleMarker.html";
|
}
|
}
|
|
}
|
}
|