Skip to main content
A newer version of this page is available. .

How to: Automatically Load Cartesian Data to a Geo Map

  • 4 minutes to read

To automatically load Cartesian map data from a shapefile to a Geo map, do the following.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace LoadGeoShapeData {
    static class Program {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main() {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}