lixiaojun
2024-07-19 2415c4eedaa96532ffc7eb1c7e5d018106115bf4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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";
            }
        }
 
    }
}