UNPKG

opengis

Version:

openlayer Map Component for Vue 2.0

5 lines (4 loc) 260 B
import { createPoint } from './factory' export const isPoint = obj => obj.lng && obj.lat export const checkType = val => Object.prototype.toString.call(val).slice(8, -1) export const getPosition = (ol, point) => isPoint(point) ? createPoint(ol, point) : point