tokml

WebJar for tokml

Лицензия

Лицензия

BSD 2-Clause
Группа

Группа

org.webjars.bower
Идентификатор

Идентификатор

tokml
Последняя версия

Последняя версия

0.3.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

tokml
WebJar for tokml
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/erinaceous/tokml

Скачать tokml

Имя Файла Размер
tokml-0.3.0.pom
tokml-0.3.0.jar 36 KB
tokml-0.3.0-sources.jar 22 bytes
tokml-0.3.0-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.bower/tokml/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>tokml</artifactId>
    <version>0.3.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/tokml/
implementation 'org.webjars.bower:tokml:0.3.0'
// https://jarcasting.com/artifacts/org.webjars.bower/tokml/
implementation ("org.webjars.bower:tokml:0.3.0")
'org.webjars.bower:tokml:jar:0.3.0'
<dependency org="org.webjars.bower" name="tokml" rev="0.3.0">
  <artifact name="tokml" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='tokml', version='0.3.0')
)
libraryDependencies += "org.webjars.bower" % "tokml" % "0.3.0"
[org.webjars.bower/tokml "0.3.0"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

Build Status Coverage Status

tokml

Convert GeoJSON to KML.

Usage

with node/browserify

npm install --save tokml

otherwise:

wget https://raw.github.com/mapbox/tokml/master/tokml.js

as a binary:

npm install -g tokml
tokml file.geojson > file.kml
tokml < file.geojson > file.kml

Example

// kml is a string of KML data, geojsonObject is a JavaScript object of
// GeoJSON data
var kml = tokml(geojsonObject);

// grab name and description properties from each object and write them in
// KML
var kmlNameDescription = tokml(geojsonObject, {
    name: 'name',
    description: 'description'
});

// name and describe the KML document as a whole
var kmlDocumentName = tokml(geojsonObject, {
    documentName: 'My List Of Markers',
    documentDescription: "One of the many places you are not I am"
});

API

tokml(geojsonObject, [options])

Given GeoJSON data as an object, return KML data as a string of XML.

options is an optional object that takes the following options:

The property to name/description mapping: while GeoJSON supports freeform properties on each feature, KML has an expectation of name and description properties that are often styled and displayed automatically. These options let you define a mapping from the GeoJSON style to KML's.

  • name: the name of the property in each GeoJSON Feature that contains the feature's name
  • description: the name of the property in each GeoJSON Feature that contains the feature's description

Timestamp: KML can associate features with a moment in time via the TimeStamp tag. GeoJSON doesn't have a comparable field, but a custom property can be mapped

  • timestamp: the name of the property in each GeoJSON Feature that contains a timestamp in XML Schema Time (yyyy-mm-ddThh:mm:sszzzzzz)

Document name and description: KML supports name and description properties for the full document.

  • documentName: the name of the full document
  • documentDescription: the description of the full document

simplestyle-spec support:

  • simplestyle: set to true to convert simplestyle-spec styles into KML styles

Development

Requires node.js and browserify:

To build tokml.js:

make

To run tests:

npm install
npm test

Версии библиотеки

Версия
0.3.0