Places UI Kit: A ready-to-use library that provides room for customization and low-code development. Try it out, and share yourinput on your UI Kit experience.

Create and manage a dataset

  • Google Maps Platform Datasets enable dynamic map styling by uploading custom geospatial data from local files or Google Cloud Storage.

  • Datasets require specific user roles for management and support various file formats like GeoJSON, KML, and CSV with defined prerequisites for data structure and size.

  • Data preparation is crucial for optimal performance, involving simplifying geometries, minimizing feature properties, and using simple data types.

  • CSV, GeoJSON, and KML files have specific requirements for data structure and supported features to ensure successful data uploads.

  • Creating, viewing, and modifying datasets can be managed through the Google Cloud console, providing tools for data upload, preview, and attribute examination.

Select platform:AndroidiOSJavaScript

Datasets let you upload geospatial data from a local file or from Google Cloud Storage tothe Google Maps Platform. You can then associate a dataset with one or more map styles inthe Cloud console. After associating the dataset with a maps style, use thedata-driven styling API to dynamically style your maps application.

You can also use a REST API to upload your geospatial data to a dataset. For more information,seeMaps Datasets API

Configure roles

To create and manage datasets in a Google Cloud project, you must hold either theOwner or Editor IAM roleon the project.

Note:If you created the project, then you have the Owner roleon the project.TheIAM page of the Google Cloud console shows the project owners and editors.

Alternatively, you can assign the following IAM roles to a user account orservice account that you use to manage datasets:

  • TheMaps Platform Datasets Admin role grants the user or services account read/write access to datasets in the project. This role lets the user perform all operations on a dataset.
  • TheMaps Platform Datasets Viewer role grants read-only access to datasets in the project. This role lets you perform a list, get, or download operation on a dataset.

For more information, seeGrant an IAM role by using the Google Cloud console.

Data source for a dataset

After you create a dataset, upload the data to the dataset fromGoogle Cloud Storageor from a local file.
  • When uploading data from Cloud Storage, specify the file path to the resource containing the data in Cloud Storage. This path is in the formgs://GCS_BUCKET/FILE.

    The user making the request requires theStorage Object Viewer role, or any other role that includes thestorage.objects.get permission. For more information about managing access to Cloud Storage, seeOverview of access control.

  • When uploading data from a local file, specify the path to the GeoJSON, KML, or CSV file containing the data to upload.

Prerequisites

When creating a dataset:

  • Display names must be unique within your Google Cloud project.
  • Display names must be less than 64 bytes (Because these characters are represented in UTF-8, in some languages each character can be represented by multiple bytes).
  • Descriptions must be less than 1000 bytes.

When uploading data:

  • The supported file types are CSV, GeoJSON, and KML.
  • The maximum supported file size is 500 MB.
  • Attribute column names cannot begin with the string "?_".
  • Three-dimensional geometries are not supported. This includes the "Z" suffix in the WKT format, and the altitude coordinate in the GeoJSON format.
Note:Depending on the size of the data file, the uploadcan take minutes or even hours to complete. If there is an error with the upload, you willget an error message. Don't attempt to delete the dataset until it has returned a response fromthe upload operation.Note:Map tiles created with data uploaded using theMaps Datasets API may drop or simplify dense or complex data at low zoom levels. For example, when auser zooms out to a state or country (for example, zoom level 5-12), the tiled data may lookdifferent than when zoomed into a city or neighborhood (for example, zoom level 13-18). This happensin order to keep tiles slim and performant using the tiles with a map renderer.Tip:If your data file is large and has many attributes init that you don't need for styling, and you would like to optimize rendering performance, edit thefile to remove the unneeded attributes. Reducing the number ofattributes reduces the size of the map's tiles, thereby improving rendering performance.

Data preparation best practices

If your source data is complex or large, such as dense points, long linestrings or polygons(often source file sizes larger than 50 MB fall into this category), consider simplifying your databefore uploading to achieve the best performance in a visual map.

Here are some best practices for preparing your data:

  1. Minimize feature properties. Only keep feature properties needed to style your map, for example "id" and "category". You can join additional properties to a feature in a client application using data-driven styles on a unique identifier key. For example, seeSee your data in real time with Data-driven styling.
  2. Use simple data types for property objects where possible, such as integers, to minimize tile size and improve map performance.
  3. Simplify complex geometries prior to uploading a file. You can do this in a geospatial tool of your choice, such as the open sourceMapshaper.org utility, or in BigQuery usingST_Simplify on complex polygon geometries.
  4. Cluster very dense points prior to uploading a file. You can do this in a geospatial tool of your choice, such as the open sourceturf.js cluster functions, or in BigQuery usingST_CLUSTERDBSCAN on dense point geometries.

See additional guidance about datasets best practices inVisualize your data with Datasets and BigQuery.

GeoJSON requirements

Maps JavaScript API supports the currentGeoJSON specification.Maps JavaScript API also support GeoJSON files that contain any of the following object types:

  • Geometry objects. A geometry object is a spatial shape, described as a union of points, lines, and polygons with optional holes.
  • Feature objects. A feature object contains a geometry plus additional name/value pairs, whose meaning is application-specific.
  • Feature collections. A feature collection is a set of feature objects.

Maps JavaScript API does not support GeoJSON files that have data in a coordinate reference system(CRS) other thanWGS84.

For more information on GeoJSON, seeRFC 7946 compliant.

KML requirements

Maps JavaScript API has the following requirements:

  • All URLs must be local (or relative) to the file itself.
  • Point, line, and polygon geometries supported.
  • All data attributes are considered strings.
The following KML features are not supported:
  • Icons or<styleUrl> defined outside of the file.
  • Network links, such as<NetworkLink>
  • Ground overlays, such as<GroundOverlay>
  • 3D geometries or any altitude-related tags such as<altitudeMode>
  • Camera specifications such as<LookAt>
  • Styles defined inside the KML file.

CSV requirements

For CSV files, the supported column names are listed below in order of priority:

  • latitude,longitude
  • lat,long
  • x,y
  • wkt(Well-Known Text)
  • address,city,state,zip
  • address
  • A single column containing all address information, such as1600 Amphitheatre Parkway Mountain View, CA 94043

For example, your file contains columns namedx,y, andwkt.Becausex andy have a higher priority, as determined by the order ofsupported column names in the list above, the values in thex andy columnsare used and thewkt column is ignored.

In addition:

  • Each column name must belong to a single column. That is, you cannot have a column namedxy that contains both x and y coordinate data. The x and y coordinates must be in separate columns.
  • Column names are case-insensitive.
  • The order of the column names does not matter. For example, if your CSV file containslat andlong columns, they can occur in any order.

Handle data upload errors

When uploading data to a dataset, you might experience one of the common errors described in thissection.

GeoJSON errors

Common GeoJSON errors include:

  • Missingtype field, or thetype is not a string. The uploaded GeoJSON data file must contain a string field namedtype as part of each Feature object and Geometry object definition.

KML errors

Common KML errors include:

  • The data file must not contain any of the unsupported KML features listed above, otherwise the data import might fail.

CSV errors

Common CSV errors include:

Create a dataset

To create a dataset:

  1. In the Google Cloud console,go to theDatasets page.
  2. ClickCreate Dataset.
  3. Enter the dataset name. The name must be unique among all datasets.
  4. Optionally enter a datasetDescription.
  5. ClickContinue. TheImport data page appears.
  6. Select theUpload source of the data used to populate the dataset asDesktop, meaning a local file on your system, orGoogle Cloud Storage bucket.
    • ForDesktop, clickBrowse and then select the file from the file chooser.
    • ForGoogle Cloud Storage bucket, clickBrowse and select the bucket and file containing the data.
  7. Select theFile format.
  8. ClickContinue to review your settings.
  9. ClickCreate. TheDatasets page appears showing your new dataset. The status should beProcessing.

    If the data uploads successfully:

    • The status of the dataset is set toCOMPLETED.
    • The dataset becomes the "active" version and is the version used by your app.

    If there is an error in the upload:

    • The status of the new dataset version is set to a status other thanCOMPLETED.

View or modify a dataset

After you create a dataset, you can view or modify the dataset:

  1. In the Google Cloud console,go to theDatasets page.
  2. Click the name of the dataset. TheDataset details page appears.
    1. Click theDetails tab to see information about the dataset. On this tab you can also edit the dataset name and description.
    2. Click thePreview tab to see your dataset on a map (datasets with a state ofCOMPLETED orREVERTED only).
    3. Click theTable Data tab to see all attributes of the dataset (datasets with a state ofCOMPLETED orREVERTED only). These are the attributes that you can use to style the dataset on the map.
    4. Click theDownload button to download the data to a local file.
    5. Click theDelete button to delete the dataset.
    6. Click theImport Data File button to upload new data to the dataset.

      Uploading new data to the dataset creates a new version of the dataset. If the new data uploads successfully:

      • The status of the new version of the dataset is set toCOMPLETED.
      • The new version becomes the "active" version and is the version used by your app.

      If there is an error in the upload:

      • The status of the new dataset version is set to a status other thanCOMPLETED. For example, if there is a previous "active" version, the status of the dataset is set toREVERTED.
      • The previously "active" dataset version stays as the "active" version and is the version used by your app.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-11 UTC.