资源简介

C# GMAP使用百度地图实现根据经纬度定位到地图

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Drawing;
//using System.Drawing;
using System.Linq;
using System.Text;
using GMap.NET;

namespace GIS
{
    internal class BaiduMap
    {
        /// 
        /// 根据经纬度坐标计算该点在屏幕中的坐标
        /// 

        /// 要计算的经纬度
        /// 屏幕中心经纬度
        /// 地图当前缩放级别
        /// 屏幕大小
        /// 
        public static GPoint GetScreenLocationByLatLng(PointLatLng p PointLatLng center int zoom Size screen_size)
        {
            GPoint dp = GetLocationByLatLng(p zoom);  //目标点的像素坐标
            GPoint cp = GetLocationByLatLng(center zoom);  //中心点的像素坐标

          

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    ..A..H.     70144  2020-06-23 18:10  GIS\.vs\GIS\v15\.suo

     文件        189  2019-09-02 17:01  GIS\GIS\App.config

     文件       8298  2019-09-12 15:19  GIS\GIS\BaiduMap.cs

     文件       1996  2019-09-11 14:03  GIS\GIS\BaiduMapProvider.cs

     文件       1022  2019-09-10 16:57  GIS\GIS\BaiduMapProviderbase.cs

     文件       4052  2019-09-02 17:32  GIS\GIS\BaiduProjection.cs

     文件     512000  2015-01-28 14:36  GIS\GIS\bin\Debug\AjaxMin.dll

     文件    5552128  2018-11-13 15:52  GIS\GIS\bin\Debug\DevComponents.DotNetBar2.dll

     文件     430592  2018-11-13 15:49  GIS\GIS\bin\Debug\DevComponents.TreeGX.dll

     文件      22016  2020-06-23 18:10  GIS\GIS\bin\Debug\GIS.exe

     文件        189  2019-09-02 17:01  GIS\GIS\bin\Debug\GIS.exe.config

     文件      50688  2020-06-23 18:10  GIS\GIS\bin\Debug\GIS.pdb

     文件    2996736  2016-12-03 00:24  GIS\GIS\bin\Debug\GMap.NET.Core.dll

     文件     150528  2016-12-03 00:15  GIS\GIS\bin\Debug\GMap.NET.WindowsForms.dll

     文件      50176  2016-12-03 00:24  GIS\GIS\bin\Debug\GMap.NET.WindowsPresentation.dll

     文件       7360  2019-11-04 14:00  GIS\GIS\Form1.cs

     文件       6947  2019-11-04 14:00  GIS\GIS\Form1.Designer.cs

     文件       6011  2019-11-04 14:00  GIS\GIS\Form1.resx

     文件       6940  2020-04-26 10:14  GIS\GIS\Form2.cs

     文件       3917  2020-04-26 10:11  GIS\GIS\Form2.Designer.cs

     文件       6011  2020-04-24 17:45  GIS\GIS\Form2.resx

     文件       5247  2020-06-23 18:09  GIS\GIS\GIS.csproj

     文件        450  2019-09-03 09:31  GIS\GIS\MapControl.cs

     文件       1118  2019-09-03 09:30  GIS\GIS\MapControl.Designer.cs

     文件       3572  2019-09-10 16:25  GIS\GIS\MapView.cs

     文件       5817  2019-09-03 10:11  GIS\GIS\MapView.resx

     文件      28125  2019-09-16 14:18  GIS\GIS\obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       7833  2020-06-23 18:09  GIS\GIS\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件          0  2020-06-23 18:10  GIS\GIS\obj\Debug\GIS.csproj.CopyComplete

     文件         42  2020-06-23 18:10  GIS\GIS\obj\Debug\GIS.csproj.CoreCompileInputs.cache

............此处省略77个文件信息

评论

共有 条评论