How can I help you?
Getting started with EJ2 TypeScript Maps component
23 May 20265 minutes to read
This section explains how to create a Maps component and configure its available functionalities in TypeScript using the Essential® JS 2 quickstart seed repository.
This application is integrated with the
webpack.config.jsconfiguration and uses the latest version of the webpack-cli. It requires nodev14.15.0or higher. For more information about webpack and its features, refer to the webpack documentation.
You can explore some useful features in the Maps component using the following video.
Prerequisites
Before you begin, ensure you have the following installed on your machine:
- Node.js (v14.15.0 or higher)
- Visual Studio Code (or any text editor)
- Git (for cloning the quickstart repository)
- A web browser to view the result
- Basic knowledge of TypeScript and webpack
Dependencies
The Maps component requires the following minimum dependencies:
|-- @syncfusion/ej2-maps
|-- @syncfusion/ej2-base
|-- @syncfusion/ej2-data
|-- @syncfusion/ej2-pdf-export
|-- @syncfusion/ej2-svg-baseNote: @syncfusion/ej2-pdf-export and @syncfusion/ej2-data are optional—required only for PDF export and data binding features respectively.
Quick Setup
Step 1: Create a Project Folder
Create a folder named my-maps in your desired location. This folder will contain your Syncfusion Maps TypeScript project.
Step 2: Open Command Prompt
Open the command prompt and navigate to your desired directory where you want to create the project. You can do this by:
- For Windows: Open Command Prompt (cmd) or PowerShell
- For macOS/Linux: Open Terminal
Step 3: Clone the Quickstart Repository
Run the following command to clone the Syncfusion® JavaScript (Essential® JS 2) quickstart project from GitHub.
git clone https://github.com/SyncfusionExamples/ej2-quickstart-webpack ej2-quickstartStep 4: Navigate to Project Folder
After cloning the application in the ej2-quickstart folder, run the following command to navigate to the project directory.
cd ej2-quickstartStep 5: Install Required Packages
Syncfusion® JavaScript (Essential® JS 2) packages are available on the npmjs.com public registry. You can install all Syncfusion® JavaScript (Essential® JS 2) controls in a single @syncfusion/ej2 package or individual packages for each control.
The quickstart application is already preconfigured with the dependent @syncfusion/ej2 package in the ~/package.json file. Use the following command to install all the dependent npm packages from the command prompt.
npm installThis command will download and install all necessary dependencies for your project.
Step 6: Update the HTML Template
Open the ej2-quickstart folder in Visual Studio Code or any text editor of your choice.
Note: Code snippets here use webpack for local development. For online demos or StackBlitz, SystemJS may be used—ignore loader/helper scripts in rendered previews.
Locate the ~/src/index.html file in the project. Add the HTML div tag with its id attribute as container to initialize the Maps container.
<!DOCTYPE html>
<html lang="en">
<head>
<title>EJ2 Maps</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Typescript UI Controls" />
<meta name="author" content="Syncfusion" />
</head>
<body>
<h1>Syncfusion Maps</h1>
<!--container which is going to render the Map-->
<div id='container'>
</div>
</body>
</html>Step 7: Create the Maps Component with GeoJSON Data
Locate the src/app/app.ts file in your project and add the Maps component with geographic data. The Maps component renders shapes based on GeoJSON data loaded from a remote URL.
Load GeoJSON Data: The Maps component uses GeoJSON format to display geographic shapes. You can load this data from a CDN URL or include it as a local data source.
import { Maps } from '@syncfusion/ej2-maps';
// Define GeoJSON data source (loading from CDN)
const shapeData: object = {
dataOptions: {
type: 'GET',
url: 'https://cdn.syncfusion.com/maps/map-data/world-map.json'
}
};
// Initialize and render Maps
const map: Maps = new Maps({
layers: [
{
shapeData: shapeData
}
]
});
// Append Maps to container
map.appendTo('#container');Step 8: Run the Application
Open the integrated terminal in Visual Studio Code or use your command prompt to run the application. Use the npm start command:
npm startThe application will compile and automatically start in your default web browser. The application typically runs at http://localhost:4000. You should see the Syncfusion® Maps control displaying the world map.
Step 9: View Your Map
Wait for the webpack dev server to complete the build process. Once completed, you will see the Maps control rendering in your browser with the geographic shapes loaded from the GeoJSON data. The map is now successfully initialized and ready for further customization.
Output
The following screenshot shows the output of the Syncfusion Maps quick start application:
