Skip to content

Latest commit

 

History

History

features

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

@ogcapi-js/features

npm

A lightweight JavaScript client library for OGCAPI - Features.

This library works with endpoints defined at:

See more details at the documentation.

Installation

npm install @ogcapi-js/features

Usage

Node.js

This library uses the global fetch function for HTTP requests. Please consider using isomorphic-fetch for polyfill.

require('isomorphic-fetch');

const { FeatureService } = require('@ogcapi-js/features');

// create a new service client
const service = new FeatureService({
  baseUrl: 'https://ogcapi.service.com'
});

// get all collections from the service
const collections = await services.getCollections();

Browser

Modern browsers already support the global fetch function so there is no need to polyfill.

import { Service } from `@ogcapi-js/features`;

// create a new service client
const service = new FeatureService({
  baseUrl: 'https://ogcapi.service.com'
});

// get all collections from the service
const collections = await services.getCollections();