diff --git a/README.md b/README.md index d824d5c..c0a9c3e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + # vue-static-map > a simple component to generate an static google map @@ -104,6 +105,421 @@ ``` +## Styled Maps +You can use [Snazzy Maps](https://snazzymaps.com/) to style your maps. You just need to pass a Snazzy Maps' valid style JSON as `customStyle` prop. You can do it in two ways and both will work: As an *array* (defined in your 'data' object) or as a *string* (directly in your template tag —yeah! it looks awful :P— but it's the simplest way without re-indenting and re-quoting the whole JSON to match the —usually restrictive— *eslint* requirements.) + +### As an *array* + +1. Create some parameters in your data object + + ```javascript + export default { + data: { + apiKey: 'YOUR_GOOGLE_API_KEY', // required + zoom: 13, // required + center: 'Brooklyn+Bridge,New+York,NY', + format: 'gif', + language: 'ja', + markers: [ + { + label: 'B', + color: 'blue', + lat: 40.702147, + lng: -74.015794, + size: 'normal', + }, + { + label: 'Y', + color: 'yellow', + lat: 40.711614, + lng: -74.012318, + size: 'tiny', + }, + { + label: 'G', + color: 'green', + lat: 40.718217, + lng: -74.015794, + size: 'small', + icon: 'http://www.airsoftmap.net/images/pin_map.png', + }, + ], + paths: [ + { + color: 'blue', + weight: 8, + geodesic: false, + fillcolor: '0xFFFF0033', + locations: [ + { startLat: 40.737102, endLng: -73.990318 }, + { startLat: 40.749825, endLng: -73.987963 }, + { startLat: 40.752946, endLng: -73.987384 }, + { startLat: 40.762946, endLng: -73.997399 }, + ], + }, + ], + type: 'roadmap', + size: [800, 400], + customStyle: [ + { + "featureType": "all", + "elementType": "geometry.fill", + "stylers": [ + { + "weight": "2.00" + } + ] + }, + { + "featureType": "all", + "elementType": "geometry.stroke", + "stylers": [ + { + "color": "#9c9c9c" + } + ] + }, + { + "featureType": "all", + "elementType": "labels.text", + "stylers": [ + { + "visibility": "on" + } + ] + }, + { + "featureType": "landscape", + "elementType": "all", + "stylers": [ + { + "color": "#f2f2f2" + } + ] + }, + { + "featureType": "landscape", + "elementType": "geometry.fill", + "stylers": [ + { + "color": "#ffffff" + } + ] + }, + { + "featureType": "landscape.man_made", + "elementType": "geometry.fill", + "stylers": [ + { + "color": "#ffffff" + } + ] + }, + { + "featureType": "poi", + "elementType": "all", + "stylers": [ + { + "visibility": "off" + } + ] + }, + { + "featureType": "road", + "elementType": "all", + "stylers": [ + { + "saturation": -100 + }, + { + "lightness": 45 + } + ] + }, + { + "featureType": "road", + "elementType": "geometry.fill", + "stylers": [ + { + "color": "#eeeeee" + } + ] + }, + { + "featureType": "road", + "elementType": "labels.text.fill", + "stylers": [ + { + "color": "#7b7b7b" + } + ] + }, + { + "featureType": "road", + "elementType": "labels.text.stroke", + "stylers": [ + { + "color": "#ffffff" + } + ] + }, + { + "featureType": "road.highway", + "elementType": "all", + "stylers": [ + { + "visibility": "simplified" + } + ] + }, + { + "featureType": "road.arterial", + "elementType": "labels.icon", + "stylers": [ + { + "visibility": "off" + } + ] + }, + { + "featureType": "transit", + "elementType": "all", + "stylers": [ + { + "visibility": "off" + } + ] + }, + { + "featureType": "water", + "elementType": "all", + "stylers": [ + { + "color": "#46bcec" + }, + { + "visibility": "on" + } + ] + }, + { + "featureType": "water", + "elementType": "geometry.fill", + "stylers": [ + { + "color": "#c8d7d4" + } + ] + }, + { + "featureType": "water", + "elementType": "labels.text.fill", + "stylers": [ + { + "color": "#070707" + } + ] + }, + { + "featureType": "water", + "elementType": "labels.text.stroke", + "stylers": [ + { + "color": "#ffffff" + } + ] + } + ], + }, + components: { + StaticMap, + }, + }; + ``` + +2. In your template just call the static map component + + ```html + + ``` + +### As a *string* (yuck!) + +1. Just paste the Snazzy Maps' JSON into the `customStyle` prop of your static map tag (remember to use simple quotes around the pasted JSON) + + ```html + + ``` + ## Events 1. What about if you want the URL of the map, you can easily do that using the **getUrl** event diff --git a/dist/StaticMap.common.js b/dist/StaticMap.common.js index ac2d1ad..3dec96e 100644 --- a/dist/StaticMap.common.js +++ b/dist/StaticMap.common.js @@ -1,1237 +1,1534 @@ module.exports = -/******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) { -/******/ return installedModules[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ i: moduleId, -/******/ l: false, -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); -/******/ -/******/ // Flag the module as loaded -/******/ module.l = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; -/******/ -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; -/******/ -/******/ // define getter function for harmony exports -/******/ __webpack_require__.d = function(exports, name, getter) { -/******/ if(!__webpack_require__.o(exports, name)) { -/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); -/******/ } -/******/ }; -/******/ -/******/ // define __esModule on exports -/******/ __webpack_require__.r = function(exports) { -/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { -/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); -/******/ } -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ -/******/ // create a fake namespace object -/******/ // mode & 1: value is a module id, require it -/******/ // mode & 2: merge all properties of value into the ns -/******/ // mode & 4: return value when already ns object -/******/ // mode & 8|1: behave like require -/******/ __webpack_require__.t = function(value, mode) { -/******/ if(mode & 1) value = __webpack_require__(value); -/******/ if(mode & 8) return value; -/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; -/******/ var ns = Object.create(null); -/******/ __webpack_require__.r(ns); -/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); -/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); -/******/ return ns; -/******/ }; -/******/ -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = function(module) { -/******/ var getter = module && module.__esModule ? -/******/ function getDefault() { return module['default']; } : -/******/ function getModuleExports() { return module; }; -/******/ __webpack_require__.d(getter, 'a', getter); -/******/ return getter; -/******/ }; -/******/ -/******/ // Object.prototype.hasOwnProperty.call -/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; -/******/ -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; -/******/ -/******/ -/******/ // Load entry module and return exports -/******/ return __webpack_require__(__webpack_require__.s = "fb15"); -/******/ }) -/************************************************************************/ -/******/ ({ - -/***/ "0d58": -/***/ (function(module, exports, __webpack_require__) { - -// 19.1.2.14 / 15.2.3.14 Object.keys(O) -var $keys = __webpack_require__("ce10"); -var enumBugKeys = __webpack_require__("e11e"); - -module.exports = Object.keys || function keys(O) { - return $keys(O, enumBugKeys); -}; - - -/***/ }), - -/***/ "11e9": -/***/ (function(module, exports, __webpack_require__) { - -var pIE = __webpack_require__("52a7"); -var createDesc = __webpack_require__("4630"); -var toIObject = __webpack_require__("6821"); -var toPrimitive = __webpack_require__("6a99"); -var has = __webpack_require__("69a8"); -var IE8_DOM_DEFINE = __webpack_require__("c69a"); -var gOPD = Object.getOwnPropertyDescriptor; - -exports.f = __webpack_require__("9e1e") ? gOPD : function getOwnPropertyDescriptor(O, P) { - O = toIObject(O); - P = toPrimitive(P, true); - if (IE8_DOM_DEFINE) try { - return gOPD(O, P); - } catch (e) { /* empty */ } - if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); -}; - - -/***/ }), - -/***/ "1495": -/***/ (function(module, exports, __webpack_require__) { - -var dP = __webpack_require__("86cc"); -var anObject = __webpack_require__("cb7c"); -var getKeys = __webpack_require__("0d58"); - -module.exports = __webpack_require__("9e1e") ? Object.defineProperties : function defineProperties(O, Properties) { - anObject(O); - var keys = getKeys(Properties); - var length = keys.length; - var i = 0; - var P; - while (length > i) dP.f(O, P = keys[i++], Properties[P]); - return O; -}; - - -/***/ }), - -/***/ "1eb2": -/***/ (function(module, exports, __webpack_require__) { - -// This file is imported into lib/wc client bundles. - -if (typeof window !== 'undefined') { - var i - if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js$/))) { +/** *** */ (function (modules) { // webpackBootstrap + /** *** */ // The module cache + /** *** */ const installedModules = {}; + /** *** */ + /** *** */ // The require function + /** *** */ function __webpack_require__(moduleId) { + /** *** */ + /** *** */ // Check if module is in cache + /** *** */ if (installedModules[moduleId]) { + /** *** */ return installedModules[moduleId].exports; + /** *** */ } + /** *** */ // Create a new module (and put it into the cache) + /** *** */ const module = installedModules[moduleId] = { + /** *** */ i: moduleId, + /** *** */ l: false, + /** *** */ exports: {}, + /** *** */ }; + /** *** */ + /** *** */ // Execute the module function + /** *** */ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); + /** *** */ + /** *** */ // Flag the module as loaded + /** *** */ module.l = true; + /** *** */ + /** *** */ // Return the exports of the module + /** *** */ return module.exports; + /** *** */ } + /** *** */ + /** *** */ + /** *** */ // expose the modules object (__webpack_modules__) + /** *** */ __webpack_require__.m = modules; + /** *** */ + /** *** */ // expose the module cache + /** *** */ __webpack_require__.c = installedModules; + /** *** */ + /** *** */ // define getter function for harmony exports + /** *** */ __webpack_require__.d = function (exports, name, getter) { + /** *** */ if (!__webpack_require__.o(exports, name)) { + /** *** */ Object.defineProperty(exports, name, { enumerable: true, get: getter }); + /** *** */ } + /** *** */ }; + /** *** */ + /** *** */ // define __esModule on exports + /** *** */ __webpack_require__.r = function (exports) { + /** *** */ if (typeof Symbol !== 'undefined' && Symbol.toStringTag) { + /** *** */ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); + /** *** */ } + /** *** */ Object.defineProperty(exports, '__esModule', { value: true }); + /** *** */ }; + /** *** */ + /** *** */ // create a fake namespace object + /** *** */ // mode & 1: value is a module id, require it + /** *** */ // mode & 2: merge all properties of value into the ns + /** *** */ // mode & 4: return value when already ns object + /** *** */ // mode & 8|1: behave like require + /** *** */ __webpack_require__.t = function (value, mode) { + /** *** */ if (mode & 1) value = __webpack_require__(value); + /** *** */ if (mode & 8) return value; + /** *** */ if ((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; + /** *** */ const ns = Object.create(null); + /** *** */ __webpack_require__.r(ns); + /** *** */ Object.defineProperty(ns, 'default', { enumerable: true, value }); + /** *** */ if (mode & 2 && typeof value !== 'string') for (const key in value) __webpack_require__.d(ns, key, (key => value[key]).bind(null, key)); + /** *** */ return ns; + /** *** */ }; + /** *** */ + /** *** */ // getDefaultExport function for compatibility with non-harmony modules + /** *** */ __webpack_require__.n = function (module) { + /** *** */ const getter = module && module.__esModule ? + /** *** */ function getDefault() { return module.default; } : + /** *** */ function getModuleExports() { return module; }; + /** *** */ __webpack_require__.d(getter, 'a', getter); + /** *** */ return getter; + /** *** */ }; + /** *** */ + /** *** */ // Object.prototype.hasOwnProperty.call + /** *** */ __webpack_require__.o = function (object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; + /** *** */ + /** *** */ // __webpack_public_path__ + /** *** */ __webpack_require__.p = ''; + /** *** */ + /** *** */ + /** *** */ // Load entry module and return exports + /** *** */ return __webpack_require__(__webpack_require__.s = 'fb15'); + /** *** */ }({ + + /** */ '01f9': + /** */ (function (module, exports, __webpack_require__) { + const LIBRARY = __webpack_require__('2d00'); + const $export = __webpack_require__('5ca1'); + const redefine = __webpack_require__('2aba'); + const hide = __webpack_require__('32e9'); + const Iterators = __webpack_require__('84f2'); + const $iterCreate = __webpack_require__('41a0'); + const setToStringTag = __webpack_require__('7f20'); + const getPrototypeOf = __webpack_require__('38fd'); + const ITERATOR = __webpack_require__('2b4c')('iterator'); + const BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next` + const FF_ITERATOR = '@@iterator'; + const KEYS = 'keys'; + const VALUES = 'values'; + + const returnThis = function () { return this; }; + + module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) { + $iterCreate(Constructor, NAME, next); + const getMethod = function (kind) { + if (!BUGGY && kind in proto) return proto[kind]; + switch (kind) { + case KEYS: return function keys() { return new Constructor(this, kind); }; + case VALUES: return function values() { return new Constructor(this, kind); }; + } return function entries() { return new Constructor(this, kind); }; + }; + const TAG = `${NAME} Iterator`; + const DEF_VALUES = DEFAULT == VALUES; + let VALUES_BUG = false; + var proto = Base.prototype; + const $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT]; + let $default = $native || getMethod(DEFAULT); + const $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined; + const $anyNative = NAME == 'Array' ? proto.entries || $native : $native; + let methods, + key, + IteratorPrototype; + // Fix native + if ($anyNative) { + IteratorPrototype = getPrototypeOf($anyNative.call(new Base())); + if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) { + // Set @@toStringTag to native iterators + setToStringTag(IteratorPrototype, TAG, true); + // fix for some old engines + if (!LIBRARY && typeof IteratorPrototype[ITERATOR] !== 'function') hide(IteratorPrototype, ITERATOR, returnThis); + } + } + // fix Array#{values, @@iterator}.name in V8 / FF + if (DEF_VALUES && $native && $native.name !== VALUES) { + VALUES_BUG = true; + $default = function values() { return $native.call(this); }; + } + // Define iterator + if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) { + hide(proto, ITERATOR, $default); + } + // Plug for library + Iterators[NAME] = $default; + Iterators[TAG] = returnThis; + if (DEFAULT) { + methods = { + values: DEF_VALUES ? $default : getMethod(VALUES), + keys: IS_SET ? $default : getMethod(KEYS), + entries: $entries, + }; + if (FORCED) { + for (key in methods) { + if (!(key in proto)) redefine(proto, key, methods[key]); + } + } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods); + } + return methods; + }; + /** */ }), + + /** */ '0bfb': + /** */ (function (module, exports, __webpack_require__) { + // 21.2.5.3 get RegExp.prototype.flags + const anObject = __webpack_require__('cb7c'); + module.exports = function () { + const that = anObject(this); + let result = ''; + if (that.global) result += 'g'; + if (that.ignoreCase) result += 'i'; + if (that.multiline) result += 'm'; + if (that.unicode) result += 'u'; + if (that.sticky) result += 'y'; + return result; + }; + /** */ }), + + /** */ '0d58': + /** */ (function (module, exports, __webpack_require__) { + // 19.1.2.14 / 15.2.3.14 Object.keys(O) + const $keys = __webpack_require__('ce10'); + const enumBugKeys = __webpack_require__('e11e'); + + module.exports = Object.keys || function keys(O) { + return $keys(O, enumBugKeys); + }; + /** */ }), + + /** */ '11e9': + /** */ (function (module, exports, __webpack_require__) { + const pIE = __webpack_require__('52a7'); + const createDesc = __webpack_require__('4630'); + const toIObject = __webpack_require__('6821'); + const toPrimitive = __webpack_require__('6a99'); + const has = __webpack_require__('69a8'); + const IE8_DOM_DEFINE = __webpack_require__('c69a'); + const gOPD = Object.getOwnPropertyDescriptor; + + exports.f = __webpack_require__('9e1e') ? gOPD : function getOwnPropertyDescriptor(O, P) { + O = toIObject(O); + P = toPrimitive(P, true); + if (IE8_DOM_DEFINE) { + try { + return gOPD(O, P); + } catch (e) { /* empty */ } + } + if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); + }; + /** */ }), + + /** */ 1495(module, exports, __webpack_require__) { + const dP = __webpack_require__('86cc'); + const anObject = __webpack_require__('cb7c'); + const getKeys = __webpack_require__('0d58'); + + module.exports = __webpack_require__('9e1e') ? Object.defineProperties : function defineProperties(O, Properties) { + anObject(O); + const keys = getKeys(Properties); + const length = keys.length; + let i = 0; + let P; + while (length > i) dP.f(O, P = keys[i++], Properties[P]); + return O; + }; + /** */ }, + + /** */ '1eb2': + /** */ (function (module, exports, __webpack_require__) { + // This file is imported into lib/wc client bundles. + + if (typeof window !== 'undefined') { + let i; + if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js$/))) { __webpack_require__.p = i[1] // eslint-disable-line - } -} - - -/***/ }), - -/***/ "230e": -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__("d3f4"); -var document = __webpack_require__("7726").document; -// typeof document.createElement is 'object' in old IE -var is = isObject(document) && isObject(document.createElement); -module.exports = function (it) { - return is ? document.createElement(it) : {}; -}; - - -/***/ }), - -/***/ "2aba": -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__("7726"); -var hide = __webpack_require__("32e9"); -var has = __webpack_require__("69a8"); -var SRC = __webpack_require__("ca5a")('src'); -var TO_STRING = 'toString'; -var $toString = Function[TO_STRING]; -var TPL = ('' + $toString).split(TO_STRING); - -__webpack_require__("8378").inspectSource = function (it) { - return $toString.call(it); -}; - -(module.exports = function (O, key, val, safe) { - var isFunction = typeof val == 'function'; - if (isFunction) has(val, 'name') || hide(val, 'name', key); - if (O[key] === val) return; - if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key))); - if (O === global) { - O[key] = val; - } else if (!safe) { - delete O[key]; - hide(O, key, val); - } else if (O[key]) { - O[key] = val; - } else { - hide(O, key, val); - } -// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative -})(Function.prototype, TO_STRING, function toString() { - return typeof this == 'function' && this[SRC] || $toString.call(this); -}); - - -/***/ }), - -/***/ "2aeb": -/***/ (function(module, exports, __webpack_require__) { - -// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) -var anObject = __webpack_require__("cb7c"); -var dPs = __webpack_require__("1495"); -var enumBugKeys = __webpack_require__("e11e"); -var IE_PROTO = __webpack_require__("613b")('IE_PROTO'); -var Empty = function () { /* empty */ }; -var PROTOTYPE = 'prototype'; - -// Create object with fake `null` prototype: use iframe Object with cleared prototype -var createDict = function () { - // Thrash, waste and sodomy: IE GC bug - var iframe = __webpack_require__("230e")('iframe'); - var i = enumBugKeys.length; - var lt = '<'; - var gt = '>'; - var iframeDocument; - iframe.style.display = 'none'; - __webpack_require__("fab2").appendChild(iframe); - iframe.src = 'javascript:'; // eslint-disable-line no-script-url - // createDict = iframe.contentWindow.Object; - // html.removeChild(iframe); - iframeDocument = iframe.contentWindow.document; - iframeDocument.open(); - iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt); - iframeDocument.close(); - createDict = iframeDocument.F; - while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]]; - return createDict(); -}; - -module.exports = Object.create || function create(O, Properties) { - var result; - if (O !== null) { - Empty[PROTOTYPE] = anObject(O); - result = new Empty(); - Empty[PROTOTYPE] = null; - // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; - } else result = createDict(); - return Properties === undefined ? result : dPs(result, Properties); -}; - - -/***/ }), - -/***/ "2d00": -/***/ (function(module, exports) { - -module.exports = false; - - -/***/ }), - -/***/ "2d95": -/***/ (function(module, exports) { - -var toString = {}.toString; - -module.exports = function (it) { - return toString.call(it).slice(8, -1); -}; - - -/***/ }), - -/***/ "32e9": -/***/ (function(module, exports, __webpack_require__) { - -var dP = __webpack_require__("86cc"); -var createDesc = __webpack_require__("4630"); -module.exports = __webpack_require__("9e1e") ? function (object, key, value) { - return dP.f(object, key, createDesc(1, value)); -} : function (object, key, value) { - object[key] = value; - return object; -}; - - -/***/ }), - -/***/ "4588": -/***/ (function(module, exports) { - -// 7.1.4 ToInteger -var ceil = Math.ceil; -var floor = Math.floor; -module.exports = function (it) { - return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); -}; - - -/***/ }), - -/***/ "4630": -/***/ (function(module, exports) { - -module.exports = function (bitmap, value) { - return { - enumerable: !(bitmap & 1), - configurable: !(bitmap & 2), - writable: !(bitmap & 4), - value: value - }; -}; - - -/***/ }), - -/***/ "52a7": -/***/ (function(module, exports) { - -exports.f = {}.propertyIsEnumerable; - - -/***/ }), - -/***/ "5537": -/***/ (function(module, exports, __webpack_require__) { - -var core = __webpack_require__("8378"); -var global = __webpack_require__("7726"); -var SHARED = '__core-js_shared__'; -var store = global[SHARED] || (global[SHARED] = {}); - -(module.exports = function (key, value) { - return store[key] || (store[key] = value !== undefined ? value : {}); -})('versions', []).push({ - version: core.version, - mode: __webpack_require__("2d00") ? 'pure' : 'global', - copyright: '© 2018 Denis Pushkarev (zloirock.ru)' -}); - - -/***/ }), - -/***/ "5ca1": -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__("7726"); -var core = __webpack_require__("8378"); -var hide = __webpack_require__("32e9"); -var redefine = __webpack_require__("2aba"); -var ctx = __webpack_require__("9b43"); -var PROTOTYPE = 'prototype'; - -var $export = function (type, name, source) { - var IS_FORCED = type & $export.F; - var IS_GLOBAL = type & $export.G; - var IS_STATIC = type & $export.S; - var IS_PROTO = type & $export.P; - var IS_BIND = type & $export.B; - var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE]; - var exports = IS_GLOBAL ? core : core[name] || (core[name] = {}); - var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {}); - var key, own, out, exp; - if (IS_GLOBAL) source = name; - for (key in source) { - // contains in native - own = !IS_FORCED && target && target[key] !== undefined; - // export native or passed - out = (own ? target : source)[key]; - // bind timers to global for call from export context - exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; - // extend global - if (target) redefine(target, key, out, type & $export.U); - // export - if (exports[key] != out) hide(exports, key, exp); - if (IS_PROTO && expProto[key] != out) expProto[key] = out; - } -}; -global.core = core; -// type bitmap -$export.F = 1; // forced -$export.G = 2; // global -$export.S = 4; // static -$export.P = 8; // proto -$export.B = 16; // bind -$export.W = 32; // wrap -$export.U = 64; // safe -$export.R = 128; // real proto method for `library` -module.exports = $export; - - -/***/ }), - -/***/ "5dbc": -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__("d3f4"); -var setPrototypeOf = __webpack_require__("8b97").set; -module.exports = function (that, target, C) { - var S = target.constructor; - var P; - if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) { - setPrototypeOf(that, P); - } return that; -}; - - -/***/ }), - -/***/ "613b": -/***/ (function(module, exports, __webpack_require__) { - -var shared = __webpack_require__("5537")('keys'); -var uid = __webpack_require__("ca5a"); -module.exports = function (key) { - return shared[key] || (shared[key] = uid(key)); -}; - - -/***/ }), - -/***/ "626a": -/***/ (function(module, exports, __webpack_require__) { - -// fallback for non-array-like ES3 and non-enumerable old V8 strings -var cof = __webpack_require__("2d95"); -// eslint-disable-next-line no-prototype-builtins -module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { - return cof(it) == 'String' ? it.split('') : Object(it); -}; - - -/***/ }), - -/***/ "6821": -/***/ (function(module, exports, __webpack_require__) { - -// to indexed object, toObject with fallback for non-array-like ES3 strings -var IObject = __webpack_require__("626a"); -var defined = __webpack_require__("be13"); -module.exports = function (it) { - return IObject(defined(it)); -}; - - -/***/ }), - -/***/ "69a8": -/***/ (function(module, exports) { - -var hasOwnProperty = {}.hasOwnProperty; -module.exports = function (it, key) { - return hasOwnProperty.call(it, key); -}; - - -/***/ }), - -/***/ "6a99": -/***/ (function(module, exports, __webpack_require__) { - -// 7.1.1 ToPrimitive(input [, PreferredType]) -var isObject = __webpack_require__("d3f4"); -// instead of the ES6 spec version, we didn't implement @@toPrimitive case -// and the second argument - flag - preferred type is a string -module.exports = function (it, S) { - if (!isObject(it)) return it; - var fn, val; - if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; - if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val; - if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; - throw TypeError("Can't convert object to primitive value"); -}; - - -/***/ }), - -/***/ "7726": -/***/ (function(module, exports) { - -// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 -var global = module.exports = typeof window != 'undefined' && window.Math == Math - ? window : typeof self != 'undefined' && self.Math == Math ? self - // eslint-disable-next-line no-new-func - : Function('return this')(); -if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef - - -/***/ }), - -/***/ "77f1": -/***/ (function(module, exports, __webpack_require__) { - -var toInteger = __webpack_require__("4588"); -var max = Math.max; -var min = Math.min; -module.exports = function (index, length) { - index = toInteger(index); - return index < 0 ? max(index + length, 0) : min(index, length); -}; - - -/***/ }), - -/***/ "79e5": -/***/ (function(module, exports) { - -module.exports = function (exec) { - try { - return !!exec(); - } catch (e) { - return true; - } -}; - - -/***/ }), - -/***/ "8378": -/***/ (function(module, exports) { - -var core = module.exports = { version: '2.5.7' }; -if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef - - -/***/ }), - -/***/ "86cc": -/***/ (function(module, exports, __webpack_require__) { - -var anObject = __webpack_require__("cb7c"); -var IE8_DOM_DEFINE = __webpack_require__("c69a"); -var toPrimitive = __webpack_require__("6a99"); -var dP = Object.defineProperty; - -exports.f = __webpack_require__("9e1e") ? Object.defineProperty : function defineProperty(O, P, Attributes) { - anObject(O); - P = toPrimitive(P, true); - anObject(Attributes); - if (IE8_DOM_DEFINE) try { - return dP(O, P, Attributes); - } catch (e) { /* empty */ } - if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!'); - if ('value' in Attributes) O[P] = Attributes.value; - return O; -}; - - -/***/ }), - -/***/ "8b97": -/***/ (function(module, exports, __webpack_require__) { - -// Works with __proto__ only. Old v8 can't work with null proto objects. -/* eslint-disable no-proto */ -var isObject = __webpack_require__("d3f4"); -var anObject = __webpack_require__("cb7c"); -var check = function (O, proto) { - anObject(O); - if (!isObject(proto) && proto !== null) throw TypeError(proto + ": can't set as prototype!"); -}; -module.exports = { + } + } + /** */ }), + + /** */ '214f': + /** */ (function (module, exports, __webpack_require__) { + const hide = __webpack_require__('32e9'); + const redefine = __webpack_require__('2aba'); + const fails = __webpack_require__('79e5'); + const defined = __webpack_require__('be13'); + const wks = __webpack_require__('2b4c'); + + module.exports = function (KEY, length, exec) { + const SYMBOL = wks(KEY); + const fns = exec(defined, SYMBOL, ''[KEY]); + const strfn = fns[0]; + const rxfn = fns[1]; + if (fails(() => { + const O = {}; + O[SYMBOL] = function () { return 7; }; + return ''[KEY](O) != 7; + })) { + redefine(String.prototype, KEY, strfn); + hide(RegExp.prototype, SYMBOL, length == 2 + // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue) + // 21.2.5.11 RegExp.prototype[@@split](string, limit) + ? function (string, arg) { return rxfn.call(string, this, arg); } + // 21.2.5.6 RegExp.prototype[@@match](string) + // 21.2.5.9 RegExp.prototype[@@search](string) + : function (string) { return rxfn.call(string, this); }); + } + }; + /** */ }), + + /** */ '230e': + /** */ (function (module, exports, __webpack_require__) { + const isObject = __webpack_require__('d3f4'); + const document = __webpack_require__('7726').document; + // typeof document.createElement is 'object' in old IE + const is = isObject(document) && isObject(document.createElement); + module.exports = function (it) { + return is ? document.createElement(it) : {}; + }; + /** */ }), + + /** */ '2aba': + /** */ (function (module, exports, __webpack_require__) { + const global = __webpack_require__('7726'); + const hide = __webpack_require__('32e9'); + const has = __webpack_require__('69a8'); + const SRC = __webpack_require__('ca5a')('src'); + const TO_STRING = 'toString'; + const $toString = Function[TO_STRING]; + const TPL = (`${$toString}`).split(TO_STRING); + + __webpack_require__('8378').inspectSource = function (it) { + return $toString.call(it); + }; + + (module.exports = function (O, key, val, safe) { + const isFunction = typeof val === 'function'; + if (isFunction) has(val, 'name') || hide(val, 'name', key); + if (O[key] === val) return; + if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? `${O[key]}` : TPL.join(String(key))); + if (O === global) { + O[key] = val; + } else if (!safe) { + delete O[key]; + hide(O, key, val); + } else if (O[key]) { + O[key] = val; + } else { + hide(O, key, val); + } + // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative + })(Function.prototype, TO_STRING, function toString() { + return typeof this === 'function' && this[SRC] || $toString.call(this); + }); + /** */ }), + + /** */ '2aeb': + /** */ (function (module, exports, __webpack_require__) { + // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) + const anObject = __webpack_require__('cb7c'); + const dPs = __webpack_require__('1495'); + const enumBugKeys = __webpack_require__('e11e'); + const IE_PROTO = __webpack_require__('613b')('IE_PROTO'); + const Empty = function () { /* empty */ }; + const PROTOTYPE = 'prototype'; + + // Create object with fake `null` prototype: use iframe Object with cleared prototype + var createDict = function () { + // Thrash, waste and sodomy: IE GC bug + const iframe = __webpack_require__('230e')('iframe'); + let i = enumBugKeys.length; + const lt = '<'; + const gt = '>'; + let iframeDocument; + iframe.style.display = 'none'; + __webpack_require__('fab2').appendChild(iframe); + iframe.src = 'javascript:'; // eslint-disable-line no-script-url + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(`${lt}script${gt}document.F=Object${lt}/script${gt}`); + iframeDocument.close(); + createDict = iframeDocument.F; + while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]]; + return createDict(); + }; + + module.exports = Object.create || function create(O, Properties) { + let result; + if (O !== null) { + Empty[PROTOTYPE] = anObject(O); + result = new Empty(); + Empty[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf polyfill + result[IE_PROTO] = O; + } else result = createDict(); + return Properties === undefined ? result : dPs(result, Properties); + }; + /** */ }), + + /** */ '2b4c': + /** */ (function (module, exports, __webpack_require__) { + const store = __webpack_require__('5537')('wks'); + const uid = __webpack_require__('ca5a'); + const Symbol = __webpack_require__('7726').Symbol; + const USE_SYMBOL = typeof Symbol === 'function'; + + const $exports = module.exports = function (name) { + return store[name] || (store[name] = + USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)(`Symbol.${name}`)); + }; + + $exports.store = store; + /** */ }), + + /** */ '2d00': + /** */ (function (module, exports) { + module.exports = false; + /** */ }), + + /** */ '2d95': + /** */ (function (module, exports) { + const toString = {}.toString; + + module.exports = function (it) { + return toString.call(it).slice(8, -1); + }; + /** */ }), + + /** */ '32e9': + /** */ (function (module, exports, __webpack_require__) { + const dP = __webpack_require__('86cc'); + const createDesc = __webpack_require__('4630'); + module.exports = __webpack_require__('9e1e') ? function (object, key, value) { + return dP.f(object, key, createDesc(1, value)); + } : function (object, key, value) { + object[key] = value; + return object; + }; + /** */ }), + + /** */ 3846(module, exports, __webpack_require__) { + // 21.2.5.3 get RegExp.prototype.flags() + if (__webpack_require__('9e1e') && /./g.flags != 'g') { + __webpack_require__('86cc').f(RegExp.prototype, 'flags', { + configurable: true, + get: __webpack_require__('0bfb'), + }); + } + /** */ }, + + /** */ '38fd': + /** */ (function (module, exports, __webpack_require__) { + // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) + const has = __webpack_require__('69a8'); + const toObject = __webpack_require__('4bf8'); + const IE_PROTO = __webpack_require__('613b')('IE_PROTO'); + const ObjectProto = Object.prototype; + + module.exports = Object.getPrototypeOf || function (O) { + O = toObject(O); + if (has(O, IE_PROTO)) return O[IE_PROTO]; + if (typeof O.constructor === 'function' && O instanceof O.constructor) { + return O.constructor.prototype; + } return O instanceof Object ? ObjectProto : null; + }; + /** */ }), + + /** */ '41a0': + /** */ (function (module, exports, __webpack_require__) { + const create = __webpack_require__('2aeb'); + const descriptor = __webpack_require__('4630'); + const setToStringTag = __webpack_require__('7f20'); + const IteratorPrototype = {}; + + // 25.1.2.1.1 %IteratorPrototype%[@@iterator]() + __webpack_require__('32e9')(IteratorPrototype, __webpack_require__('2b4c')('iterator'), function () { return this; }); + + module.exports = function (Constructor, NAME, next) { + Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) }); + setToStringTag(Constructor, `${NAME} Iterator`); + }; + /** */ }), + + /** */ '456d': + /** */ (function (module, exports, __webpack_require__) { + // 19.1.2.14 Object.keys(O) + const toObject = __webpack_require__('4bf8'); + const $keys = __webpack_require__('0d58'); + + __webpack_require__('5eda')('keys', () => function keys(it) { + return $keys(toObject(it)); + }); + /** */ }), + + /** */ 4588(module, exports) { + // 7.1.4 ToInteger + const ceil = Math.ceil; + const floor = Math.floor; + module.exports = function (it) { + return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); + }; + /** */ }, + + /** */ 4630(module, exports) { + module.exports = function (bitmap, value) { + return { + enumerable: !(bitmap & 1), + configurable: !(bitmap & 2), + writable: !(bitmap & 4), + value, + }; + }; + /** */ }, + + /** */ '4bf8': + /** */ (function (module, exports, __webpack_require__) { + // 7.1.13 ToObject(argument) + const defined = __webpack_require__('be13'); + module.exports = function (it) { + return Object(defined(it)); + }; + /** */ }), + + /** */ '52a7': + /** */ (function (module, exports) { + exports.f = {}.propertyIsEnumerable; + /** */ }), + + /** */ 5537(module, exports, __webpack_require__) { + const core = __webpack_require__('8378'); + const global = __webpack_require__('7726'); + const SHARED = '__core-js_shared__'; + const store = global[SHARED] || (global[SHARED] = {}); + + (module.exports = function (key, value) { + return store[key] || (store[key] = value !== undefined ? value : {}); + })('versions', []).push({ + version: core.version, + mode: __webpack_require__('2d00') ? 'pure' : 'global', + copyright: '© 2018 Denis Pushkarev (zloirock.ru)', + }); + /** */ }, + + /** */ '5ca1': + /** */ (function (module, exports, __webpack_require__) { + const global = __webpack_require__('7726'); + const core = __webpack_require__('8378'); + const hide = __webpack_require__('32e9'); + const redefine = __webpack_require__('2aba'); + const ctx = __webpack_require__('9b43'); + const PROTOTYPE = 'prototype'; + + var $export = function (type, name, source) { + const IS_FORCED = type & $export.F; + const IS_GLOBAL = type & $export.G; + const IS_STATIC = type & $export.S; + const IS_PROTO = type & $export.P; + const IS_BIND = type & $export.B; + const target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE]; + const exports = IS_GLOBAL ? core : core[name] || (core[name] = {}); + const expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {}); + let key, + own, + out, + exp; + if (IS_GLOBAL) source = name; + for (key in source) { + // contains in native + own = !IS_FORCED && target && target[key] !== undefined; + // export native or passed + out = (own ? target : source)[key]; + // bind timers to global for call from export context + exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out === 'function' ? ctx(Function.call, out) : out; + // extend global + if (target) redefine(target, key, out, type & $export.U); + // export + if (exports[key] != out) hide(exports, key, exp); + if (IS_PROTO && expProto[key] != out) expProto[key] = out; + } + }; + global.core = core; + // type bitmap + $export.F = 1; // forced + $export.G = 2; // global + $export.S = 4; // static + $export.P = 8; // proto + $export.B = 16; // bind + $export.W = 32; // wrap + $export.U = 64; // safe + $export.R = 128; // real proto method for `library` + module.exports = $export; + /** */ }), + + /** */ '5dbc': + /** */ (function (module, exports, __webpack_require__) { + const isObject = __webpack_require__('d3f4'); + const setPrototypeOf = __webpack_require__('8b97').set; + module.exports = function (that, target, C) { + const S = target.constructor; + let P; + if (S !== C && typeof S === 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) { + setPrototypeOf(that, P); + } return that; + }; + /** */ }), + + /** */ '5eda': + /** */ (function (module, exports, __webpack_require__) { + // most Object methods by ES6 should accept primitives + const $export = __webpack_require__('5ca1'); + const core = __webpack_require__('8378'); + const fails = __webpack_require__('79e5'); + module.exports = function (KEY, exec) { + const fn = (core.Object || {})[KEY] || Object[KEY]; + const exp = {}; + exp[KEY] = exec(fn); + $export($export.S + $export.F * fails(() => { fn(1); }), 'Object', exp); + }; + /** */ }), + + /** */ '613b': + /** */ (function (module, exports, __webpack_require__) { + const shared = __webpack_require__('5537')('keys'); + const uid = __webpack_require__('ca5a'); + module.exports = function (key) { + return shared[key] || (shared[key] = uid(key)); + }; + /** */ }), + + /** */ '626a': + /** */ (function (module, exports, __webpack_require__) { + // fallback for non-array-like ES3 and non-enumerable old V8 strings + const cof = __webpack_require__('2d95'); + // eslint-disable-next-line no-prototype-builtins + module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { + return cof(it) == 'String' ? it.split('') : Object(it); + }; + /** */ }), + + /** */ 6821(module, exports, __webpack_require__) { + // to indexed object, toObject with fallback for non-array-like ES3 strings + const IObject = __webpack_require__('626a'); + const defined = __webpack_require__('be13'); + module.exports = function (it) { + return IObject(defined(it)); + }; + /** */ }, + + /** */ '69a8': + /** */ (function (module, exports) { + const hasOwnProperty = {}.hasOwnProperty; + module.exports = function (it, key) { + return hasOwnProperty.call(it, key); + }; + /** */ }), + + /** */ '6a99': + /** */ (function (module, exports, __webpack_require__) { + // 7.1.1 ToPrimitive(input [, PreferredType]) + const isObject = __webpack_require__('d3f4'); + // instead of the ES6 spec version, we didn't implement @@toPrimitive case + // and the second argument - flag - preferred type is a string + module.exports = function (it, S) { + if (!isObject(it)) return it; + let fn, + val; + if (S && typeof (fn = it.toString) === 'function' && !isObject(val = fn.call(it))) return val; + if (typeof (fn = it.valueOf) === 'function' && !isObject(val = fn.call(it))) return val; + if (!S && typeof (fn = it.toString) === 'function' && !isObject(val = fn.call(it))) return val; + throw TypeError("Can't convert object to primitive value"); + }; + /** */ }), + + /** */ '6b54': + /** */ (function (module, exports, __webpack_require__) { + __webpack_require__('3846'); + const anObject = __webpack_require__('cb7c'); + const $flags = __webpack_require__('0bfb'); + const DESCRIPTORS = __webpack_require__('9e1e'); + const TO_STRING = 'toString'; + const $toString = /./[TO_STRING]; + + const define = function (fn) { + __webpack_require__('2aba')(RegExp.prototype, TO_STRING, fn, true); + }; + + // 21.2.5.14 RegExp.prototype.toString() + if (__webpack_require__('79e5')(() => $toString.call({ source: 'a', flags: 'b' }) != '/a/b')) { + define(function toString() { + const R = anObject(this); + return '/'.concat( + R.source, '/', + 'flags' in R ? R.flags : !DESCRIPTORS && R instanceof RegExp ? $flags.call(R) : undefined, + ); + }); + // FF44- RegExp#toString has a wrong name + } else if ($toString.name != TO_STRING) { + define(function toString() { + return $toString.call(this); + }); + } + /** */ }), + + /** */ 7726(module, exports) { + // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 + const global = module.exports = typeof window !== 'undefined' && window.Math == Math + ? window : typeof self !== 'undefined' && self.Math == Math ? self + // eslint-disable-next-line no-new-func + : Function('return this')(); + if (typeof __g === 'number') __g = global; // eslint-disable-line no-undef + /** */ }, + + /** */ '77f1': + /** */ (function (module, exports, __webpack_require__) { + const toInteger = __webpack_require__('4588'); + const max = Math.max; + const min = Math.min; + module.exports = function (index, length) { + index = toInteger(index); + return index < 0 ? max(index + length, 0) : min(index, length); + }; + /** */ }), + + /** */ '79e5': + /** */ (function (module, exports) { + module.exports = function (exec) { + try { + return !!exec(); + } catch (e) { + return true; + } + }; + /** */ }), + + /** */ '7f20': + /** */ (function (module, exports, __webpack_require__) { + const def = __webpack_require__('86cc').f; + const has = __webpack_require__('69a8'); + const TAG = __webpack_require__('2b4c')('toStringTag'); + + module.exports = function (it, tag, stat) { + if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag }); + }; + /** */ }), + + /** */ 8378(module, exports) { + const core = module.exports = { version: '2.5.7' }; + if (typeof __e === 'number') __e = core; // eslint-disable-line no-undef + /** */ }, + + /** */ '84f2': + /** */ (function (module, exports) { + module.exports = {}; + /** */ }), + + /** */ '86cc': + /** */ (function (module, exports, __webpack_require__) { + const anObject = __webpack_require__('cb7c'); + const IE8_DOM_DEFINE = __webpack_require__('c69a'); + const toPrimitive = __webpack_require__('6a99'); + const dP = Object.defineProperty; + + exports.f = __webpack_require__('9e1e') ? Object.defineProperty : function defineProperty(O, P, Attributes) { + anObject(O); + P = toPrimitive(P, true); + anObject(Attributes); + if (IE8_DOM_DEFINE) { + try { + return dP(O, P, Attributes); + } catch (e) { /* empty */ } + } + if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!'); + if ('value' in Attributes) O[P] = Attributes.value; + return O; + }; + /** */ }), + + /** */ '8b97': + /** */ (function (module, exports, __webpack_require__) { + // Works with __proto__ only. Old v8 can't work with null proto objects. + /* eslint-disable no-proto */ + const isObject = __webpack_require__('d3f4'); + const anObject = __webpack_require__('cb7c'); + const check = function (O, proto) { + anObject(O); + if (!isObject(proto) && proto !== null) throw TypeError(`${proto}: can't set as prototype!`); + }; + module.exports = { set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line - function (test, buggy, set) { - try { - set = __webpack_require__("9b43")(Function.call, __webpack_require__("11e9").f(Object.prototype, '__proto__').set, 2); - set(test, []); - buggy = !(test instanceof Array); - } catch (e) { buggy = true; } - return function setPrototypeOf(O, proto) { - check(O, proto); - if (buggy) O.__proto__ = proto; - else set(O, proto); - return O; - }; - }({}, false) : undefined), - check: check -}; - - -/***/ }), - -/***/ "9093": -/***/ (function(module, exports, __webpack_require__) { - -// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) -var $keys = __webpack_require__("ce10"); -var hiddenKeys = __webpack_require__("e11e").concat('length', 'prototype'); - -exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { - return $keys(O, hiddenKeys); -}; - - -/***/ }), - -/***/ "9b43": -/***/ (function(module, exports, __webpack_require__) { - -// optional / simple context binding -var aFunction = __webpack_require__("d8e8"); -module.exports = function (fn, that, length) { - aFunction(fn); - if (that === undefined) return fn; - switch (length) { - case 1: return function (a) { - return fn.call(that, a); - }; - case 2: return function (a, b) { - return fn.call(that, a, b); - }; - case 3: return function (a, b, c) { - return fn.call(that, a, b, c); - }; - } - return function (/* ...args */) { - return fn.apply(that, arguments); - }; -}; - - -/***/ }), - -/***/ "9def": -/***/ (function(module, exports, __webpack_require__) { - -// 7.1.15 ToLength -var toInteger = __webpack_require__("4588"); -var min = Math.min; -module.exports = function (it) { - return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 -}; - - -/***/ }), - -/***/ "9e1e": -/***/ (function(module, exports, __webpack_require__) { - -// Thank's IE8 for his funny defineProperty -module.exports = !__webpack_require__("79e5")(function () { - return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7; -}); - - -/***/ }), - -/***/ "aa77": -/***/ (function(module, exports, __webpack_require__) { - -var $export = __webpack_require__("5ca1"); -var defined = __webpack_require__("be13"); -var fails = __webpack_require__("79e5"); -var spaces = __webpack_require__("fdef"); -var space = '[' + spaces + ']'; -var non = '\u200b\u0085'; -var ltrim = RegExp('^' + space + space + '*'); -var rtrim = RegExp(space + space + '*$'); - -var exporter = function (KEY, exec, ALIAS) { - var exp = {}; - var FORCE = fails(function () { - return !!spaces[KEY]() || non[KEY]() != non; - }); - var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY]; - if (ALIAS) exp[ALIAS] = fn; - $export($export.P + $export.F * FORCE, 'String', exp); -}; - -// 1 -> String#trimLeft -// 2 -> String#trimRight -// 3 -> String#trim -var trim = exporter.trim = function (string, TYPE) { - string = String(defined(string)); - if (TYPE & 1) string = string.replace(ltrim, ''); - if (TYPE & 2) string = string.replace(rtrim, ''); - return string; -}; - -module.exports = exporter; - - -/***/ }), - -/***/ "be13": -/***/ (function(module, exports) { - -// 7.2.1 RequireObjectCoercible(argument) -module.exports = function (it) { - if (it == undefined) throw TypeError("Can't call method on " + it); - return it; -}; - - -/***/ }), - -/***/ "c366": -/***/ (function(module, exports, __webpack_require__) { - -// false -> Array#indexOf -// true -> Array#includes -var toIObject = __webpack_require__("6821"); -var toLength = __webpack_require__("9def"); -var toAbsoluteIndex = __webpack_require__("77f1"); -module.exports = function (IS_INCLUDES) { - return function ($this, el, fromIndex) { - var O = toIObject($this); - var length = toLength(O.length); - var index = toAbsoluteIndex(fromIndex, length); - var value; - // Array#includes uses SameValueZero equality algorithm - // eslint-disable-next-line no-self-compare - if (IS_INCLUDES && el != el) while (length > index) { - value = O[index++]; - // eslint-disable-next-line no-self-compare - if (value != value) return true; - // Array#indexOf ignores holes, Array#includes - not - } else for (;length > index; index++) if (IS_INCLUDES || index in O) { - if (O[index] === el) return IS_INCLUDES || index || 0; - } return !IS_INCLUDES && -1; - }; -}; - - -/***/ }), - -/***/ "c5f6": -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var global = __webpack_require__("7726"); -var has = __webpack_require__("69a8"); -var cof = __webpack_require__("2d95"); -var inheritIfRequired = __webpack_require__("5dbc"); -var toPrimitive = __webpack_require__("6a99"); -var fails = __webpack_require__("79e5"); -var gOPN = __webpack_require__("9093").f; -var gOPD = __webpack_require__("11e9").f; -var dP = __webpack_require__("86cc").f; -var $trim = __webpack_require__("aa77").trim; -var NUMBER = 'Number'; -var $Number = global[NUMBER]; -var Base = $Number; -var proto = $Number.prototype; -// Opera ~12 has broken Object#toString -var BROKEN_COF = cof(__webpack_require__("2aeb")(proto)) == NUMBER; -var TRIM = 'trim' in String.prototype; - -// 7.1.3 ToNumber(argument) -var toNumber = function (argument) { - var it = toPrimitive(argument, false); - if (typeof it == 'string' && it.length > 2) { - it = TRIM ? it.trim() : $trim(it, 3); - var first = it.charCodeAt(0); - var third, radix, maxCode; - if (first === 43 || first === 45) { - third = it.charCodeAt(2); - if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix - } else if (first === 48) { - switch (it.charCodeAt(1)) { - case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i - case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i - default: return +it; - } - for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) { - code = digits.charCodeAt(i); - // parseInt parses a string to a first unavailable symbol - // but ToNumber should return NaN if a string contains unavailable symbols - if (code < 48 || code > maxCode) return NaN; - } return parseInt(digits, radix); - } - } return +it; -}; - -if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { - $Number = function Number(value) { - var it = arguments.length < 1 ? 0 : value; - var that = this; - return that instanceof $Number + (function (test, buggy, set) { + try { + set = __webpack_require__('9b43')(Function.call, __webpack_require__('11e9').f(Object.prototype, '__proto__').set, 2); + set(test, []); + buggy = !(test instanceof Array); + } catch (e) { buggy = true; } + return function setPrototypeOf(O, proto) { + check(O, proto); + if (buggy) O.__proto__ = proto; + else set(O, proto); + return O; + }; + }({}, false)) : undefined), + check, + }; + /** */ }), + + /** */ 9093(module, exports, __webpack_require__) { + // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) + const $keys = __webpack_require__('ce10'); + const hiddenKeys = __webpack_require__('e11e').concat('length', 'prototype'); + + exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { + return $keys(O, hiddenKeys); + }; + /** */ }, + + /** */ '9b43': + /** */ (function (module, exports, __webpack_require__) { + // optional / simple context binding + const aFunction = __webpack_require__('d8e8'); + module.exports = function (fn, that, length) { + aFunction(fn); + if (that === undefined) return fn; + switch (length) { + case 1: return function (a) { + return fn.call(that, a); + }; + case 2: return function (a, b) { + return fn.call(that, a, b); + }; + case 3: return function (a, b, c) { + return fn.call(that, a, b, c); + }; + } + return function (/* ...args */) { + return fn.apply(that, arguments); + }; + }; + /** */ }), + + /** */ '9c6c': + /** */ (function (module, exports, __webpack_require__) { + // 22.1.3.31 Array.prototype[@@unscopables] + const UNSCOPABLES = __webpack_require__('2b4c')('unscopables'); + const ArrayProto = Array.prototype; + if (ArrayProto[UNSCOPABLES] == undefined) __webpack_require__('32e9')(ArrayProto, UNSCOPABLES, {}); + module.exports = function (key) { + ArrayProto[UNSCOPABLES][key] = true; + }; + /** */ }), + + /** */ '9def': + /** */ (function (module, exports, __webpack_require__) { + // 7.1.15 ToLength + const toInteger = __webpack_require__('4588'); + const min = Math.min; + module.exports = function (it) { + return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 + }; + /** */ }), + + /** */ '9e1e': + /** */ (function (module, exports, __webpack_require__) { + // Thank's IE8 for his funny defineProperty + module.exports = !__webpack_require__('79e5')(() => Object.defineProperty({}, 'a', { get() { return 7; } }).a != 7); + /** */ }), + + /** */ a481(module, exports, __webpack_require__) { + // @@replace logic + __webpack_require__('214f')('replace', 2, (defined, REPLACE, $replace) => + // 21.1.3.14 String.prototype.replace(searchValue, replaceValue) + [function replace(searchValue, replaceValue) { + const O = defined(this); + const fn = searchValue == undefined ? undefined : searchValue[REPLACE]; + return fn !== undefined + ? fn.call(searchValue, O, replaceValue) + : $replace.call(String(O), searchValue, replaceValue); + }, $replace]); + /** */ }, + + /** */ aa77(module, exports, __webpack_require__) { + const $export = __webpack_require__('5ca1'); + const defined = __webpack_require__('be13'); + const fails = __webpack_require__('79e5'); + const spaces = __webpack_require__('fdef'); + const space = `[${spaces}]`; + const non = '\u200b\u0085'; + const ltrim = RegExp(`^${space}${space}*`); + const rtrim = RegExp(`${space + space}*$`); + + const exporter = function (KEY, exec, ALIAS) { + const exp = {}; + const FORCE = fails(() => !!spaces[KEY]() || non[KEY]() != non); + const fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY]; + if (ALIAS) exp[ALIAS] = fn; + $export($export.P + $export.F * FORCE, 'String', exp); + }; + + // 1 -> String#trimLeft + // 2 -> String#trimRight + // 3 -> String#trim + var trim = exporter.trim = function (string, TYPE) { + string = String(defined(string)); + if (TYPE & 1) string = string.replace(ltrim, ''); + if (TYPE & 2) string = string.replace(rtrim, ''); + return string; + }; + + module.exports = exporter; + /** */ }, + + /** */ ac6a(module, exports, __webpack_require__) { + const $iterators = __webpack_require__('cadf'); + const getKeys = __webpack_require__('0d58'); + const redefine = __webpack_require__('2aba'); + const global = __webpack_require__('7726'); + const hide = __webpack_require__('32e9'); + const Iterators = __webpack_require__('84f2'); + const wks = __webpack_require__('2b4c'); + const ITERATOR = wks('iterator'); + const TO_STRING_TAG = wks('toStringTag'); + const ArrayValues = Iterators.Array; + + const DOMIterables = { + CSSRuleList: true, // TODO: Not spec compliant, should be false. + CSSStyleDeclaration: false, + CSSValueList: false, + ClientRectList: false, + DOMRectList: false, + DOMStringList: false, + DOMTokenList: true, + DataTransferItemList: false, + FileList: false, + HTMLAllCollection: false, + HTMLCollection: false, + HTMLFormElement: false, + HTMLSelectElement: false, + MediaList: true, // TODO: Not spec compliant, should be false. + MimeTypeArray: false, + NamedNodeMap: false, + NodeList: true, + PaintRequestList: false, + Plugin: false, + PluginArray: false, + SVGLengthList: false, + SVGNumberList: false, + SVGPathSegList: false, + SVGPointList: false, + SVGStringList: false, + SVGTransformList: false, + SourceBufferList: false, + StyleSheetList: true, // TODO: Not spec compliant, should be false. + TextTrackCueList: false, + TextTrackList: false, + TouchList: false, + }; + + for (let collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) { + const NAME = collections[i]; + const explicit = DOMIterables[NAME]; + const Collection = global[NAME]; + const proto = Collection && Collection.prototype; + var key; + if (proto) { + if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues); + if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME); + Iterators[NAME] = ArrayValues; + if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true); + } + } + /** */ }, + + /** */ be13(module, exports) { + // 7.2.1 RequireObjectCoercible(argument) + module.exports = function (it) { + if (it == undefined) throw TypeError(`Can't call method on ${it}`); + return it; + }; + /** */ }, + + /** */ c366(module, exports, __webpack_require__) { + // false -> Array#indexOf + // true -> Array#includes + const toIObject = __webpack_require__('6821'); + const toLength = __webpack_require__('9def'); + const toAbsoluteIndex = __webpack_require__('77f1'); + module.exports = function (IS_INCLUDES) { + return function ($this, el, fromIndex) { + const O = toIObject($this); + const length = toLength(O.length); + let index = toAbsoluteIndex(fromIndex, length); + let value; + // Array#includes uses SameValueZero equality algorithm + // eslint-disable-next-line no-self-compare + if (IS_INCLUDES && el != el) { + while (length > index) { + value = O[index++]; + // eslint-disable-next-line no-self-compare + if (value != value) return true; + // Array#indexOf ignores holes, Array#includes - not + } + } else { + for (;length > index; index++) { + if (IS_INCLUDES || index in O) { + if (O[index] === el) return IS_INCLUDES || index || 0; + } + } + } return !IS_INCLUDES && -1; + }; + }; + /** */ }, + + /** */ c5f6(module, exports, __webpack_require__) { + const global = __webpack_require__('7726'); + const has = __webpack_require__('69a8'); + const cof = __webpack_require__('2d95'); + const inheritIfRequired = __webpack_require__('5dbc'); + const toPrimitive = __webpack_require__('6a99'); + const fails = __webpack_require__('79e5'); + const gOPN = __webpack_require__('9093').f; + const gOPD = __webpack_require__('11e9').f; + const dP = __webpack_require__('86cc').f; + const $trim = __webpack_require__('aa77').trim; + const NUMBER = 'Number'; + let $Number = global[NUMBER]; + const Base = $Number; + const proto = $Number.prototype; + // Opera ~12 has broken Object#toString + const BROKEN_COF = cof(__webpack_require__('2aeb')(proto)) == NUMBER; + const TRIM = 'trim' in String.prototype; + + // 7.1.3 ToNumber(argument) + const toNumber = function (argument) { + let it = toPrimitive(argument, false); + if (typeof it === 'string' && it.length > 2) { + it = TRIM ? it.trim() : $trim(it, 3); + const first = it.charCodeAt(0); + let third, + radix, + maxCode; + if (first === 43 || first === 45) { + third = it.charCodeAt(2); + if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix + } else if (first === 48) { + switch (it.charCodeAt(1)) { + case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i + case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i + default: return +it; + } + for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) { + code = digits.charCodeAt(i); + // parseInt parses a string to a first unavailable symbol + // but ToNumber should return NaN if a string contains unavailable symbols + if (code < 48 || code > maxCode) return NaN; + } return parseInt(digits, radix); + } + } return +it; + }; + + if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { + $Number = function Number(value) { + const it = arguments.length < 1 ? 0 : value; + const that = this; + return that instanceof $Number // check on 1..constructor(foo) case - && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER) - ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it); - }; - for (var keys = __webpack_require__("9e1e") ? gOPN(Base) : ( - // ES3: - 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + + && (BROKEN_COF ? fails(() => { proto.valueOf.call(that); }) : cof(that) != NUMBER) + ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it); + }; + for (var keys = __webpack_require__('9e1e') ? gOPN(Base) : ( + // ES3: + 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + // ES6 (in case, if modules with ES6 Number statics required before): 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' + 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger' - ).split(','), j = 0, key; keys.length > j; j++) { - if (has(Base, key = keys[j]) && !has($Number, key)) { - dP($Number, key, gOPD(Base, key)); - } - } - $Number.prototype = proto; - proto.constructor = $Number; - __webpack_require__("2aba")(global, NUMBER, $Number); -} - - -/***/ }), - -/***/ "c69a": -/***/ (function(module, exports, __webpack_require__) { - -module.exports = !__webpack_require__("9e1e") && !__webpack_require__("79e5")(function () { - return Object.defineProperty(__webpack_require__("230e")('div'), 'a', { get: function () { return 7; } }).a != 7; -}); - - -/***/ }), - -/***/ "ca5a": -/***/ (function(module, exports) { - -var id = 0; -var px = Math.random(); -module.exports = function (key) { - return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); -}; - - -/***/ }), - -/***/ "cb7c": -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__("d3f4"); -module.exports = function (it) { - if (!isObject(it)) throw TypeError(it + ' is not an object!'); - return it; -}; - - -/***/ }), - -/***/ "ce10": -/***/ (function(module, exports, __webpack_require__) { - -var has = __webpack_require__("69a8"); -var toIObject = __webpack_require__("6821"); -var arrayIndexOf = __webpack_require__("c366")(false); -var IE_PROTO = __webpack_require__("613b")('IE_PROTO'); - -module.exports = function (object, names) { - var O = toIObject(object); - var i = 0; - var result = []; - var key; - for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key); - // Don't enum bug & hidden keys - while (names.length > i) if (has(O, key = names[i++])) { - ~arrayIndexOf(result, key) || result.push(key); - } - return result; -}; - - -/***/ }), - -/***/ "d3f4": -/***/ (function(module, exports) { - -module.exports = function (it) { - return typeof it === 'object' ? it !== null : typeof it === 'function'; -}; - - -/***/ }), - -/***/ "d8e8": -/***/ (function(module, exports) { - -module.exports = function (it) { - if (typeof it != 'function') throw TypeError(it + ' is not a function!'); - return it; -}; - - -/***/ }), - -/***/ "e11e": -/***/ (function(module, exports) { - -// IE 8- don't enum bug keys -module.exports = ( - 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' -).split(','); - - -/***/ }), - -/***/ "fab2": -/***/ (function(module, exports, __webpack_require__) { - -var document = __webpack_require__("7726").document; -module.exports = document && document.documentElement; - - -/***/ }), - -/***/ "fb15": -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); - -// EXTERNAL MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js -var setPublicPath = __webpack_require__("1eb2"); - -// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0595ba96-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/static-map.vue?vue&type=template&id=89561ac4& -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('img',{attrs:{"src":_vm.mapUrl}})} -var staticRenderFns = [] - - -// CONCATENATED MODULE: ./src/components/static-map.vue?vue&type=template&id=89561ac4& - -// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.number.constructor.js -var es6_number_constructor = __webpack_require__("c5f6"); - -// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/static-map.vue?vue&type=script&lang=js& - -// -// -// -// -var BASE_URL_MAP = 'https://maps.googleapis.com/maps/api/staticmap?'; - -function generateFormatMap() { - return this.format.toLowerCase(); -} - -function generateMapType() { - var types = ['roadmap', 'satellite', 'hybrid', 'terrain']; - var currenType = this.type; - - if (types.indexOf(currenType) > -1) { - return currenType; - } - - var upperTypes = types.join(', ').toUpperCase(); - throw Error("Type must be one of the following values ".concat(upperTypes)); -} - -function generateMapUrl() { - var mapUrl = "".concat(BASE_URL_MAP, "center=").concat(this.center, "&zoom=").concat(this.zoom, "&size=").concat(this.sizeMap, "&maptype=").concat(this.mapTypeMap, "&format=").concat(this.formatMap, "&key=").concat(this.googleApiKey, "&scale=").concat(this.scaleMap, "&language=").concat(this.language).concat(this.markersMap).concat(this.pathsMap); - this.$emit('get-url', mapUrl); - return mapUrl; -} -/* eslint-disable arrow-parens */ - - -function generateMarkers() { - var markers = this.markers.map(function (marker) { - var color = "color:".concat(marker.color, "|"); - var size = "size:".concat(marker.size, "|"); - var label = "label:".concat(marker.label, "|"); - var icon = "icon:".concat(marker.icon, "|"); - var latLng = "".concat(marker.lat, ",").concat(marker.lng); - var markerUrl = '&markers='; - - if (marker.color) { - markerUrl += color; - } - - if (marker.size) { - markerUrl += size; - } - - if (marker.label) { - markerUrl += label; - } - - if (marker.icon) { - markerUrl += icon; - } - - if (marker.lat && marker.lng) { - markerUrl += latLng; - } - - return markerUrl; - }); - return markers.join(''); -} -/* eslint-disable arrow-parens */ - - -function generatePaths() { - var paths = this.paths.map(function (path) { - var color = "color:".concat(path.color); - var weight = "weight:".concat(path.weight); - var geodesic = "geodesic:".concat(path.geodesic); - var fillcolor = "fillcolor:".concat(path.fillcolor); - var latLng = path.locations.map(function (location) { - if (location.startLat && location.endLng) { - return "|".concat(location.startLat, ",").concat(location.endLng); - } - - throw Error('The path object must have startLat and endLng properties'); - }); - var joinLatLng = latLng.join(''); - var pathUrl = "&path=".concat(color, "|").concat(fillcolor, "|").concat(geodesic, "|").concat(weight).concat(joinLatLng); - return pathUrl; - }); - return paths.length > 0 ? paths[0] : ''; -} - -function generateScaleMap() { - var allowedScales = ['1', '2', '4']; - - if (allowedScales.indexOf(this.scale) > -1) { - return this.scale; - } - - throw Error("Scale only can have the values ".concat(allowedScales.join(', '))); -} - -function generateSizeMap() { - if (this.size.length > 0) { - var size = this.size; - return "".concat(size[0], "x").concat(size[1]); - } - - throw Error('Size must have 2 values: WIDTH AND HEIGHT'); -} - -/* harmony default export */ var static_mapvue_type_script_lang_js_ = ({ - name: 'static-map', - computed: { - formatMap: generateFormatMap, - mapTypeMap: generateMapType, - mapUrl: generateMapUrl, - markersMap: generateMarkers, - pathsMap: generatePaths, - scaleMap: generateScaleMap, - sizeMap: generateSizeMap - }, - props: { - center: { - type: String, - required: true - }, - format: { - type: String, - default: 'png' - }, - getUrl: { - type: Function - }, - googleApiKey: { - type: String, - required: true - }, - language: { - type: String, - default: 'en' - }, - markers: { - type: Array, - default: function _default() { - return []; - } - }, - paths: { - type: Array, - default: function _default() { - return []; - } - }, - type: { - type: String, - default: 'roadmap' - }, - scale: { - type: String, - default: '1' - }, - size: { - type: Array, - default: function _default() { - return [500, 400]; - } - }, - zoom: { - type: Number, - required: true - } - } -}); -// CONCATENATED MODULE: ./src/components/static-map.vue?vue&type=script&lang=js& - /* harmony default export */ var components_static_mapvue_type_script_lang_js_ = (static_mapvue_type_script_lang_js_); -// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js -/* globals __VUE_SSR_CONTEXT__ */ - -// IMPORTANT: Do NOT use ES2015 features in this file (except for modules). -// This module is a runtime utility for cleaner component module output and will -// be included in the final webpack user bundle. - -function normalizeComponent ( - scriptExports, - render, - staticRenderFns, - functionalTemplate, - injectStyles, - scopeId, - moduleIdentifier, /* server only */ - shadowMode /* vue-cli only */ -) { - // Vue.extend constructor export interop - var options = typeof scriptExports === 'function' - ? scriptExports.options - : scriptExports - - // render functions - if (render) { - options.render = render - options.staticRenderFns = staticRenderFns - options._compiled = true - } - - // functional template - if (functionalTemplate) { - options.functional = true - } - - // scopedId - if (scopeId) { - options._scopeId = 'data-v-' + scopeId - } - - var hook - if (moduleIdentifier) { // server build - hook = function (context) { - // 2.3 injection - context = + ).split(','), j = 0, key; keys.length > j; j++) { + if (has(Base, key = keys[j]) && !has($Number, key)) { + dP($Number, key, gOPD(Base, key)); + } + } + $Number.prototype = proto; + proto.constructor = $Number; + __webpack_require__('2aba')(global, NUMBER, $Number); + } + /** */ }, + + /** */ c69a(module, exports, __webpack_require__) { + module.exports = !__webpack_require__('9e1e') && !__webpack_require__('79e5')(() => Object.defineProperty(__webpack_require__('230e')('div'), 'a', { get() { return 7; } }).a != 7); + /** */ }, + + /** */ ca5a(module, exports) { + let id = 0; + const px = Math.random(); + module.exports = function (key) { + return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); + }; + /** */ }, + + /** */ cadf(module, exports, __webpack_require__) { + const addToUnscopables = __webpack_require__('9c6c'); + const step = __webpack_require__('d53b'); + const Iterators = __webpack_require__('84f2'); + const toIObject = __webpack_require__('6821'); + + // 22.1.3.4 Array.prototype.entries() + // 22.1.3.13 Array.prototype.keys() + // 22.1.3.29 Array.prototype.values() + // 22.1.3.30 Array.prototype[@@iterator]() + module.exports = __webpack_require__('01f9')(Array, 'Array', function (iterated, kind) { + this._t = toIObject(iterated); // target + this._i = 0; // next index + this._k = kind; // kind + // 22.1.5.2.1 %ArrayIteratorPrototype%.next() + }, function () { + const O = this._t; + const kind = this._k; + const index = this._i++; + if (!O || index >= O.length) { + this._t = undefined; + return step(1); + } + if (kind == 'keys') return step(0, index); + if (kind == 'values') return step(0, O[index]); + return step(0, [index, O[index]]); + }, 'values'); + + // argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7) + Iterators.Arguments = Iterators.Array; + + addToUnscopables('keys'); + addToUnscopables('values'); + addToUnscopables('entries'); + /** */ }, + + /** */ cb7c(module, exports, __webpack_require__) { + const isObject = __webpack_require__('d3f4'); + module.exports = function (it) { + if (!isObject(it)) throw TypeError(`${it} is not an object!`); + return it; + }; + /** */ }, + + /** */ ce10(module, exports, __webpack_require__) { + const has = __webpack_require__('69a8'); + const toIObject = __webpack_require__('6821'); + const arrayIndexOf = __webpack_require__('c366')(false); + const IE_PROTO = __webpack_require__('613b')('IE_PROTO'); + + module.exports = function (object, names) { + const O = toIObject(object); + let i = 0; + const result = []; + let key; + for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key); + // Don't enum bug & hidden keys + while (names.length > i) { + if (has(O, key = names[i++])) { + ~arrayIndexOf(result, key) || result.push(key); + } + } + return result; + }; + /** */ }, + + /** */ d3f4(module, exports) { + module.exports = function (it) { + return typeof it === 'object' ? it !== null : typeof it === 'function'; + }; + /** */ }, + + /** */ d53b(module, exports) { + module.exports = function (done, value) { + return { value, done: !!done }; + }; + /** */ }, + + /** */ d8e8(module, exports) { + module.exports = function (it) { + if (typeof it !== 'function') throw TypeError(`${it} is not a function!`); + return it; + }; + /** */ }, + + /** */ e11e(module, exports) { + // IE 8- don't enum bug keys + module.exports = ( + 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' + ).split(','); + /** */ }, + + /** */ fab2(module, exports, __webpack_require__) { + const document = __webpack_require__('7726').document; + module.exports = document && document.documentElement; + /** */ }, + + /** */ fb15(module, __webpack_exports__, __webpack_require__) { + __webpack_require__.r(__webpack_exports__); + + // EXTERNAL MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js + const setPublicPath = __webpack_require__('1eb2'); + + // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0595ba96-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/static-map.vue?vue&type=template&id=5f546ca9& + const render = function () { const _vm = this; const _h = _vm.$createElement; const _c = _vm._self._c || _h; return _c('img', { attrs: { src: _vm.mapUrl } }); }; + const staticRenderFns = []; + + + // CONCATENATED MODULE: ./src/components/static-map.vue?vue&type=template&id=5f546ca9& + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.number.constructor.js + const es6_number_constructor = __webpack_require__('c5f6'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.regexp.to-string.js + const es6_regexp_to_string = __webpack_require__('6b54'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.regexp.replace.js + const es6_regexp_replace = __webpack_require__('a481'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.array.iterator.js + const es6_array_iterator = __webpack_require__('cadf'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.object.keys.js + const es6_object_keys = __webpack_require__('456d'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom.iterable.js + const web_dom_iterable = __webpack_require__('ac6a'); + + // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/static-map.vue?vue&type=script&lang=js& + + + // + // + // + // + const BASE_URL_MAP = 'https://maps.googleapis.com/maps/api/staticmap?'; + + function generateFormatMap() { + return this.format.toLowerCase(); + } + + function generateMapType() { + const types = ['roadmap', 'satellite', 'hybrid', 'terrain']; + const currenType = this.type; + + if (types.indexOf(currenType) > -1) { + return currenType; + } + + const upperTypes = types.join(', ').toUpperCase(); + throw Error('Type must be one of the following values '.concat(upperTypes)); + } + + function generateMapUrl() { + const mapUrl = ''.concat(BASE_URL_MAP, 'center=').concat(this.center, '&zoom=').concat(this.zoom, '&size=').concat(this.sizeMap, '&maptype=') + .concat(this.mapTypeMap, '&format=') + .concat(this.formatMap, '&key=') + .concat(this.googleApiKey, '&scale=') + .concat(this.scaleMap, '&language=') + .concat(this.language) + .concat(this.markersMap) + .concat(this.pathsMap, '&') + .concat(this.styleMap); + this.$emit('get-url', mapUrl); + return mapUrl; + } + /* eslint-disable arrow-parens */ + + + function generateMarkers() { + const markers = this.markers.map((marker) => { + const color = 'color:'.concat(marker.color, '|'); + const size = 'size:'.concat(marker.size, '|'); + const label = 'label:'.concat(marker.label, '|'); + const icon = 'icon:'.concat(marker.icon, '|'); + const latLng = ''.concat(marker.lat, ',').concat(marker.lng); + let markerUrl = '&markers='; + + if (marker.color) { + markerUrl += color; + } + + if (marker.size) { + markerUrl += size; + } + + if (marker.label) { + markerUrl += label; + } + + if (marker.icon) { + markerUrl += icon; + } + + if (marker.lat && marker.lng) { + markerUrl += latLng; + } + + return markerUrl; + }); + return markers.join(''); + } + /* eslint-disable arrow-parens */ + + + function generatePaths() { + const paths = this.paths.map((path) => { + const color = 'color:'.concat(path.color); + const weight = 'weight:'.concat(path.weight); + const geodesic = 'geodesic:'.concat(path.geodesic); + const fillcolor = 'fillcolor:'.concat(path.fillcolor); + const latLng = path.locations.map((location) => { + if (location.startLat && location.endLng) { + return '|'.concat(location.startLat, ',').concat(location.endLng); + } + + throw Error('The path object must have startLat and endLng properties'); + }); + const joinLatLng = latLng.join(''); + const pathUrl = '&path='.concat(color, '|').concat(fillcolor, '|').concat(geodesic, '|').concat(weight) + .concat(joinLatLng); + return pathUrl; + }); + return paths.length > 0 ? paths[0] : ''; + } + + function generateScaleMap() { + const allowedScales = ['1', '2', '4']; + + if (allowedScales.indexOf(this.scale) > -1) { + return this.scale; + } + + throw Error('Scale only can have the values '.concat(allowedScales.join(', '))); + } + + function generateSizeMap() { + if (this.size.length > 0) { + const size = this.size; + return ''.concat(size[0], 'x').concat(size[1]); + } + + throw Error('Size must have 2 values: WIDTH AND HEIGHT'); + } + + function generateCustomStyles() { + const result = []; + + if (this.customStyle) { + let custom = []; + + try { + custom = JSON.parse(this.customStyle); + } catch (e) { + custom = this.customStyle; + } + + custom.forEach((v) => { + let style = ''; + + if (v.stylers) { + if (v.stylers.length > 0) { + style += ''.concat(Object.prototype.hasOwnProperty.call(v, 'featureType') ? 'feature:'.concat(v.featureType) : 'feature:all', '|'); + style += ''.concat(Object.prototype.hasOwnProperty.call(v, 'elementType') ? 'element:'.concat(v.elementType) : 'element:all', '|'); + v.stylers.forEach((val) => { + const propertyname = Object.keys(val)[0]; + const propertyval = val[propertyname].toString().replace('#', '0x'); + style += ''.concat(propertyname, ':').concat(propertyval, '|'); + }); + } + } + + result.push('style='.concat(encodeURIComponent(style))); + }); + } + + return result.join('&'); + } + + /* harmony default export */ const static_mapvue_type_script_lang_js_ = ({ + name: 'static-map', + computed: { + formatMap: generateFormatMap, + mapTypeMap: generateMapType, + mapUrl: generateMapUrl, + markersMap: generateMarkers, + pathsMap: generatePaths, + scaleMap: generateScaleMap, + sizeMap: generateSizeMap, + styleMap: generateCustomStyles, + }, + props: { + center: { + type: String, + required: true, + }, + format: { + type: String, + default: 'png', + }, + getUrl: { + type: Function, + }, + googleApiKey: { + type: String, + required: true, + }, + language: { + type: String, + default: 'en', + }, + markers: { + type: Array, + default: function _default() { + return []; + }, + }, + paths: { + type: Array, + default: function _default() { + return []; + }, + }, + type: { + type: String, + default: 'roadmap', + }, + scale: { + type: String, + default: '1', + }, + size: { + type: Array, + default: function _default() { + return [500, 400]; + }, + }, + customStyle: { + type: [String, Array], + default: null, + }, + zoom: { + type: Number, + required: true, + }, + }, + }); + // CONCATENATED MODULE: ./src/components/static-map.vue?vue&type=script&lang=js& + /* harmony default export */ const components_static_mapvue_type_script_lang_js_ = (static_mapvue_type_script_lang_js_); + // CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js + /* globals __VUE_SSR_CONTEXT__ */ + + // IMPORTANT: Do NOT use ES2015 features in this file (except for modules). + // This module is a runtime utility for cleaner component module output and will + // be included in the final webpack user bundle. + + function normalizeComponent( + scriptExports, + render, + staticRenderFns, + functionalTemplate, + injectStyles, + scopeId, + moduleIdentifier, /* server only */ + shadowMode, /* vue-cli only */ + ) { + // Vue.extend constructor export interop + const options = typeof scriptExports === 'function' + ? scriptExports.options + : scriptExports; + + // render functions + if (render) { + options.render = render; + options.staticRenderFns = staticRenderFns; + options._compiled = true; + } + + // functional template + if (functionalTemplate) { + options.functional = true; + } + + // scopedId + if (scopeId) { + options._scopeId = `data-v-${scopeId}`; + } + + let hook; + if (moduleIdentifier) { // server build + hook = function (context) { + // 2.3 injection + context = context || // cached call (this.$vnode && this.$vnode.ssrContext) || // stateful - (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional - // 2.2 with runInNewContext: true - if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') { - context = __VUE_SSR_CONTEXT__ - } - // inject component styles - if (injectStyles) { - injectStyles.call(this, context) - } - // register component module identifier for async chunk inferrence - if (context && context._registeredComponents) { - context._registeredComponents.add(moduleIdentifier) - } - } - // used by ssr in case component is cached and beforeCreate - // never gets called - options._ssrRegister = hook - } else if (injectStyles) { - hook = shadowMode - ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) } - : injectStyles - } - - if (hook) { - if (options.functional) { - // for template-only hot-reload because in that case the render fn doesn't - // go through the normalizer - options._injectStyles = hook - // register for functioal component in vue file - var originalRender = options.render - options.render = function renderWithStyleInjection (h, context) { - hook.call(context) - return originalRender(h, context) - } - } else { - // inject component registration as beforeCreate hook - var existing = options.beforeCreate - options.beforeCreate = existing - ? [].concat(existing, hook) - : [hook] - } - } - - return { - exports: scriptExports, - options: options - } -} - -// CONCATENATED MODULE: ./src/components/static-map.vue - - - - - -/* normalize component */ - -var component = normalizeComponent( - components_static_mapvue_type_script_lang_js_, - render, - staticRenderFns, - false, - null, - null, - null - -) - -component.options.__file = "static-map.vue" -/* harmony default export */ var static_map = (component.exports); -// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js - - -/* harmony default export */ var entry_lib = __webpack_exports__["default"] = (static_map); - - - -/***/ }), - -/***/ "fdef": -/***/ (function(module, exports) { - -module.exports = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' + + (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional + // 2.2 with runInNewContext: true + if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') { + context = __VUE_SSR_CONTEXT__; + } + // inject component styles + if (injectStyles) { + injectStyles.call(this, context); + } + // register component module identifier for async chunk inferrence + if (context && context._registeredComponents) { + context._registeredComponents.add(moduleIdentifier); + } + }; + // used by ssr in case component is cached and beforeCreate + // never gets called + options._ssrRegister = hook; + } else if (injectStyles) { + hook = shadowMode + ? function () { injectStyles.call(this, this.$root.$options.shadowRoot); } + : injectStyles; + } + + if (hook) { + if (options.functional) { + // for template-only hot-reload because in that case the render fn doesn't + // go through the normalizer + options._injectStyles = hook; + // register for functioal component in vue file + const originalRender = options.render; + options.render = function renderWithStyleInjection(h, context) { + hook.call(context); + return originalRender(h, context); + }; + } else { + // inject component registration as beforeCreate hook + const existing = options.beforeCreate; + options.beforeCreate = existing + ? [].concat(existing, hook) + : [hook]; + } + } + + return { + exports: scriptExports, + options, + }; + } + + // CONCATENATED MODULE: ./src/components/static-map.vue + + + /* normalize component */ + + const component = normalizeComponent( + components_static_mapvue_type_script_lang_js_, + render, + staticRenderFns, + false, + null, + null, + null, + + ); + + component.options.__file = 'static-map.vue'; + /* harmony default export */ const static_map = (component.exports); + // CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js + + + /* harmony default export */ const entry_lib = __webpack_exports__.default = (static_map); + /** */ }, + + /** */ fdef(module, exports) { + module.exports = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' + '\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; + /** */ }, - -/***/ }) - -/******/ })["default"]; -//# sourceMappingURL=StaticMap.common.js.map \ No newline at end of file + /** *** */ })).default; +// # sourceMappingURL=StaticMap.common.js.map diff --git a/dist/StaticMap.common.js.map b/dist/StaticMap.common.js.map index dbcd519..b8acaea 100644 --- a/dist/StaticMap.common.js.map +++ b/dist/StaticMap.common.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack://StaticMap/webpack/bootstrap","webpack://StaticMap/./node_modules/core-js/modules/_object-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopd.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dps.js","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://StaticMap/./node_modules/core-js/modules/_dom-create.js","webpack://StaticMap/./node_modules/core-js/modules/_redefine.js","webpack://StaticMap/./node_modules/core-js/modules/_object-create.js","webpack://StaticMap/./node_modules/core-js/modules/_library.js","webpack://StaticMap/./node_modules/core-js/modules/_cof.js","webpack://StaticMap/./node_modules/core-js/modules/_hide.js","webpack://StaticMap/./node_modules/core-js/modules/_to-integer.js","webpack://StaticMap/./node_modules/core-js/modules/_property-desc.js","webpack://StaticMap/./node_modules/core-js/modules/_object-pie.js","webpack://StaticMap/./node_modules/core-js/modules/_shared.js","webpack://StaticMap/./node_modules/core-js/modules/_export.js","webpack://StaticMap/./node_modules/core-js/modules/_inherit-if-required.js","webpack://StaticMap/./node_modules/core-js/modules/_shared-key.js","webpack://StaticMap/./node_modules/core-js/modules/_iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_to-iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_has.js","webpack://StaticMap/./node_modules/core-js/modules/_to-primitive.js","webpack://StaticMap/./node_modules/core-js/modules/_global.js","webpack://StaticMap/./node_modules/core-js/modules/_to-absolute-index.js","webpack://StaticMap/./node_modules/core-js/modules/_fails.js","webpack://StaticMap/./node_modules/core-js/modules/_core.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dp.js","webpack://StaticMap/./node_modules/core-js/modules/_set-proto.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopn.js","webpack://StaticMap/./node_modules/core-js/modules/_ctx.js","webpack://StaticMap/./node_modules/core-js/modules/_to-length.js","webpack://StaticMap/./node_modules/core-js/modules/_descriptors.js","webpack://StaticMap/./node_modules/core-js/modules/_string-trim.js","webpack://StaticMap/./node_modules/core-js/modules/_defined.js","webpack://StaticMap/./node_modules/core-js/modules/_array-includes.js","webpack://StaticMap/./node_modules/core-js/modules/es6.number.constructor.js","webpack://StaticMap/./node_modules/core-js/modules/_ie8-dom-define.js","webpack://StaticMap/./node_modules/core-js/modules/_uid.js","webpack://StaticMap/./node_modules/core-js/modules/_an-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys-internal.js","webpack://StaticMap/./node_modules/core-js/modules/_is-object.js","webpack://StaticMap/./node_modules/core-js/modules/_a-function.js","webpack://StaticMap/./node_modules/core-js/modules/_enum-bug-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_html.js","webpack://StaticMap/./src/components/static-map.vue?e419","webpack://StaticMap/src/components/static-map.vue","webpack://StaticMap/./src/components/static-map.vue?1ba1","webpack://StaticMap/./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack://StaticMap/./src/components/static-map.vue","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js","webpack://StaticMap/./node_modules/core-js/modules/_string-ws.js"],"names":[],"mappings":"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,cAFA,kBAGA,iBAHA,oBAIA,aAJA,uBAIA,aAJA,SAIA,eAJA,SAKA,aALA;AAOA;AACA;AACA;AAEA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA,GAvBA;AAwBA;AACA;AAEA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA,KALA;AAMA;AACA;AACA;AACA,GAdA;AAeA;AACA;;AAEA;AACA;;AACA;AACA;AACA;;AACA;AACA;;AAEA;AACA;AAAA,QACA,IADA,GACA,IADA,CACA,IADA;AAEA;AACA;;AACA;AACA;;AAEA;AACA,oBADA;AAEA;AACA,gCADA;AAEA,+BAFA;AAGA,0BAHA;AAIA,+BAJA;AAKA,2BALA;AAMA,8BANA;AAOA;AAPA,GAFA;AAWA;AACA;AACA,kBADA;AAEA;AAFA,KADA;AAKA;AACA,kBADA;AAEA;AAFA,KALA;AASA;AACA;AADA,KATA;AAYA;AACA,kBADA;AAEA;AAFA,KAZA;AAgBA;AACA,kBADA;AAEA;AAFA,KAhBA;AAoBA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KApBA;AAwBA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KAxBA;AA4BA;AACA,kBADA;AAEA;AAFA,KA5BA;AAgCA;AACA,kBADA;AAEA;AAFA,KAhCA;AAoCA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KApCA;AAwCA;AACA,kBADA;AAEA;AAFA;AAxCA;AAXA,G;;AClG8Q,CAAgB,oHAAG,EAAC,C;;ACAlS;;AAEA;AACA;AACA;;AAEe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,qBAAqB;AACrB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;AC5FyF;AAC3B;AACL;;;AAGzD;AAC0F;AAC1F,gBAAgB,kBAAU;AAC1B,EAAE,6CAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;;AAEA;;AAEA;AACe,gE;;ACnBS;AACA;AACxB,+EAAe,UAAG;AACI;;;;;;;;ACHtB;AACA","file":"StaticMap.common.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var i\n if ((i = window.document.currentScript) && (i = i.src.match(/(.+\\/)[^/]+\\.js$/))) {\n __webpack_public_path__ = i[1] // eslint-disable-line\n }\n}\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","module.exports = false;\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","exports.f = {}.propertyIsEnumerable;\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2018 Denis Pushkarev (zloirock.ru)'\n});\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","var core = module.exports = { version: '2.5.7' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var $export = require('./_export');\nvar defined = require('./_defined');\nvar fails = require('./_fails');\nvar spaces = require('./_string-ws');\nvar space = '[' + spaces + ']';\nvar non = '\\u200b\\u0085';\nvar ltrim = RegExp('^' + space + space + '*');\nvar rtrim = RegExp(space + space + '*$');\n\nvar exporter = function (KEY, exec, ALIAS) {\n var exp = {};\n var FORCE = fails(function () {\n return !!spaces[KEY]() || non[KEY]() != non;\n });\n var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY];\n if (ALIAS) exp[ALIAS] = fn;\n $export($export.P + $export.F * FORCE, 'String', exp);\n};\n\n// 1 -> String#trimLeft\n// 2 -> String#trimRight\n// 3 -> String#trim\nvar trim = exporter.trim = function (string, TYPE) {\n string = String(defined(string));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n};\n\nmodule.exports = exporter;\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","'use strict';\nvar global = require('./_global');\nvar has = require('./_has');\nvar cof = require('./_cof');\nvar inheritIfRequired = require('./_inherit-if-required');\nvar toPrimitive = require('./_to-primitive');\nvar fails = require('./_fails');\nvar gOPN = require('./_object-gopn').f;\nvar gOPD = require('./_object-gopd').f;\nvar dP = require('./_object-dp').f;\nvar $trim = require('./_string-trim').trim;\nvar NUMBER = 'Number';\nvar $Number = global[NUMBER];\nvar Base = $Number;\nvar proto = $Number.prototype;\n// Opera ~12 has broken Object#toString\nvar BROKEN_COF = cof(require('./_object-create')(proto)) == NUMBER;\nvar TRIM = 'trim' in String.prototype;\n\n// 7.1.3 ToNumber(argument)\nvar toNumber = function (argument) {\n var it = toPrimitive(argument, false);\n if (typeof it == 'string' && it.length > 2) {\n it = TRIM ? it.trim() : $trim(it, 3);\n var first = it.charCodeAt(0);\n var third, radix, maxCode;\n if (first === 43 || first === 45) {\n third = it.charCodeAt(2);\n if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix\n } else if (first === 48) {\n switch (it.charCodeAt(1)) {\n case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n default: return +it;\n }\n for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) {\n code = digits.charCodeAt(i);\n // parseInt parses a string to a first unavailable symbol\n // but ToNumber should return NaN if a string contains unavailable symbols\n if (code < 48 || code > maxCode) return NaN;\n } return parseInt(digits, radix);\n }\n } return +it;\n};\n\nif (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) {\n $Number = function Number(value) {\n var it = arguments.length < 1 ? 0 : value;\n var that = this;\n return that instanceof $Number\n // check on 1..constructor(foo) case\n && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER)\n ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n };\n for (var keys = require('./_descriptors') ? gOPN(Base) : (\n // ES3:\n 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n // ES6 (in case, if modules with ES6 Number statics required before):\n 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n ).split(','), j = 0, key; keys.length > j; j++) {\n if (has(Base, key = keys[j]) && !has($Number, key)) {\n dP($Number, key, gOPD(Base, key));\n }\n }\n $Number.prototype = proto;\n proto.constructor = $Number;\n require('./_redefine')(global, NUMBER, $Number);\n}\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('img',{attrs:{\"src\":_vm.mapUrl}})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./static-map.vue?vue&type=template&id=89561ac4&\"\nimport script from \"./static-map.vue?vue&type=script&lang=js&\"\nexport * from \"./static-map.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"static-map.vue\"\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","module.exports = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003' +\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack://StaticMap/webpack/bootstrap","webpack://StaticMap/./node_modules/core-js/modules/_iter-define.js","webpack://StaticMap/./node_modules/core-js/modules/_flags.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopd.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dps.js","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://StaticMap/./node_modules/core-js/modules/_fix-re-wks.js","webpack://StaticMap/./node_modules/core-js/modules/_dom-create.js","webpack://StaticMap/./node_modules/core-js/modules/_redefine.js","webpack://StaticMap/./node_modules/core-js/modules/_object-create.js","webpack://StaticMap/./node_modules/core-js/modules/_wks.js","webpack://StaticMap/./node_modules/core-js/modules/_library.js","webpack://StaticMap/./node_modules/core-js/modules/_cof.js","webpack://StaticMap/./node_modules/core-js/modules/_hide.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.flags.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gpo.js","webpack://StaticMap/./node_modules/core-js/modules/_iter-create.js","webpack://StaticMap/./node_modules/core-js/modules/es6.object.keys.js","webpack://StaticMap/./node_modules/core-js/modules/_to-integer.js","webpack://StaticMap/./node_modules/core-js/modules/_property-desc.js","webpack://StaticMap/./node_modules/core-js/modules/_to-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-pie.js","webpack://StaticMap/./node_modules/core-js/modules/_shared.js","webpack://StaticMap/./node_modules/core-js/modules/_export.js","webpack://StaticMap/./node_modules/core-js/modules/_inherit-if-required.js","webpack://StaticMap/./node_modules/core-js/modules/_object-sap.js","webpack://StaticMap/./node_modules/core-js/modules/_shared-key.js","webpack://StaticMap/./node_modules/core-js/modules/_iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_to-iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_has.js","webpack://StaticMap/./node_modules/core-js/modules/_to-primitive.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.to-string.js","webpack://StaticMap/./node_modules/core-js/modules/_global.js","webpack://StaticMap/./node_modules/core-js/modules/_to-absolute-index.js","webpack://StaticMap/./node_modules/core-js/modules/_fails.js","webpack://StaticMap/./node_modules/core-js/modules/_set-to-string-tag.js","webpack://StaticMap/./node_modules/core-js/modules/_core.js","webpack://StaticMap/./node_modules/core-js/modules/_iterators.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dp.js","webpack://StaticMap/./node_modules/core-js/modules/_set-proto.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopn.js","webpack://StaticMap/./node_modules/core-js/modules/_ctx.js","webpack://StaticMap/./node_modules/core-js/modules/_add-to-unscopables.js","webpack://StaticMap/./node_modules/core-js/modules/_to-length.js","webpack://StaticMap/./node_modules/core-js/modules/_descriptors.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.replace.js","webpack://StaticMap/./node_modules/core-js/modules/_string-trim.js","webpack://StaticMap/./node_modules/core-js/modules/web.dom.iterable.js","webpack://StaticMap/./node_modules/core-js/modules/_defined.js","webpack://StaticMap/./node_modules/core-js/modules/_array-includes.js","webpack://StaticMap/./node_modules/core-js/modules/es6.number.constructor.js","webpack://StaticMap/./node_modules/core-js/modules/_ie8-dom-define.js","webpack://StaticMap/./node_modules/core-js/modules/_uid.js","webpack://StaticMap/./node_modules/core-js/modules/es6.array.iterator.js","webpack://StaticMap/./node_modules/core-js/modules/_an-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys-internal.js","webpack://StaticMap/./node_modules/core-js/modules/_is-object.js","webpack://StaticMap/./node_modules/core-js/modules/_iter-step.js","webpack://StaticMap/./node_modules/core-js/modules/_a-function.js","webpack://StaticMap/./node_modules/core-js/modules/_enum-bug-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_html.js","webpack://StaticMap/./src/components/static-map.vue?f1dc","webpack://StaticMap/src/components/static-map.vue","webpack://StaticMap/./src/components/static-map.vue?1ba1","webpack://StaticMap/./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack://StaticMap/./src/components/static-map.vue","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js","webpack://StaticMap/./node_modules/core-js/modules/_string-ws.js"],"names":[],"mappings":";;AAAA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,kDAA0C,gCAAgC;AAC1E;AACA;;AAEA;AACA;AACA;AACA,gEAAwD,kBAAkB;AAC1E;AACA,yDAAiD,cAAc;AAC/D;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iDAAyC,iCAAiC;AAC1E,wHAAgH,mBAAmB,EAAE;AACrI;AACA;;AAEA;AACA;AACA;AACA,mCAA2B,0BAA0B,EAAE;AACvD,yCAAiC,eAAe;AAChD;AACA;AACA;;AAEA;AACA,8DAAsD,+DAA+D;;AAErH;AACA;;;AAGA;AACA;;;;;;;;;AClFa;AACb,cAAc,mBAAO,CAAC,MAAY;AAClC,cAAc,mBAAO,CAAC,MAAW;AACjC,eAAe,mBAAO,CAAC,MAAa;AACpC,WAAW,mBAAO,CAAC,MAAS;AAC5B,gBAAgB,mBAAO,CAAC,MAAc;AACtC,kBAAkB,mBAAO,CAAC,MAAgB;AAC1C,qBAAqB,mBAAO,CAAC,MAAsB;AACnD,qBAAqB,mBAAO,CAAC,MAAe;AAC5C,eAAe,mBAAO,CAAC,MAAQ;AAC/B,8CAA8C;AAC9C;AACA;AACA;;AAEA,8BAA8B,aAAa;;AAE3C;AACA;AACA;AACA;AACA;AACA,yCAAyC,oCAAoC;AAC7E,6CAA6C,oCAAoC;AACjF,KAAK,4BAA4B,oCAAoC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,mBAAmB;AACnC;AACA;AACA,kCAAkC,2BAA2B;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;;;;;;;;ACpEa;AACb;AACA,eAAe,mBAAO,CAAC,MAAc;AACrC;AACA;AACA;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AACA;AACA;AACA;;AACA;AACA,GAvBA;AAwBA;AACA;AAEA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA,KALA;AAMA;AACA;AACA;AACA,GAdA;AAeA;AACA;;AAEA;AACA;;AACA;AACA;AACA;;AACA;AACA;;AAEA;AACA;AAAA,QACA,IADA,GACA,IADA,CACA,IADA;AAEA;AACA;;AACA;AACA;;AAEA;AACA;;AACA;AACA;;AACA;AACA;AACA,KAFA,CAEA;AACA;AACA;;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAJA;AAKA;AACA;;AACA;AACA,KAdA;AAeA;;AACA;AACA;;AAEA;AACA,oBADA;AAEA;AACA,gCADA;AAEA,+BAFA;AAGA,0BAHA;AAIA,+BAJA;AAKA,2BALA;AAMA,8BANA;AAOA,4BAPA;AAQA;AARA,GAFA;AAYA;AACA;AACA,kBADA;AAEA;AAFA,KADA;AAKA;AACA,kBADA;AAEA;AAFA,KALA;AASA;AACA;AADA,KATA;AAYA;AACA,kBADA;AAEA;AAFA,KAZA;AAgBA;AACA,kBADA;AAEA;AAFA,KAhBA;AAoBA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KApBA;AAwBA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KAxBA;AA4BA;AACA,kBADA;AAEA;AAFA,KA5BA;AAgCA;AACA,kBADA;AAEA;AAFA,KAhCA;AAoCA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KApCA;AAwCA;AACA,2BADA;AAEA;AAFA,KAxCA;AA4CA;AACA,kBADA;AAEA;AAFA;AA5CA;AAZA,G;;AC9H8Q,CAAgB,oHAAG,EAAC,C;;ACAlS;;AAEA;AACA;AACA;;AAEe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,qBAAqB;AACrB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;AC5FyF;AAC3B;AACL;;;AAGzD;AAC0F;AAC1F,gBAAgB,kBAAU;AAC1B,EAAE,6CAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;;AAEA;;AAEA;AACe,gE;;ACnBS;AACA;AACxB,+EAAe,UAAG;AACI;;;;;;;;ACHtB;AACA","file":"StaticMap.common.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","'use strict';\n// 21.2.5.3 get RegExp.prototype.flags\nvar anObject = require('./_an-object');\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var i\n if ((i = window.document.currentScript) && (i = i.src.match(/(.+\\/)[^/]+\\.js$/))) {\n __webpack_public_path__ = i[1] // eslint-disable-line\n }\n}\n","'use strict';\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n var fns = exec(defined, SYMBOL, ''[KEY]);\n var strfn = fns[0];\n var rxfn = fns[1];\n if (fails(function () {\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n })) {\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n","module.exports = false;\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","// 21.2.5.3 get RegExp.prototype.flags()\nif (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(RegExp.prototype, 'flags', {\n configurable: true,\n get: require('./_flags')\n});\n","// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","// 19.1.2.14 Object.keys(O)\nvar toObject = require('./_to-object');\nvar $keys = require('./_object-keys');\n\nrequire('./_object-sap')('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n","exports.f = {}.propertyIsEnumerable;\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2018 Denis Pushkarev (zloirock.ru)'\n});\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","// most Object methods by ES6 should accept primitives\nvar $export = require('./_export');\nvar core = require('./_core');\nvar fails = require('./_fails');\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","'use strict';\nrequire('./es6.regexp.flags');\nvar anObject = require('./_an-object');\nvar $flags = require('./_flags');\nvar DESCRIPTORS = require('./_descriptors');\nvar TO_STRING = 'toString';\nvar $toString = /./[TO_STRING];\n\nvar define = function (fn) {\n require('./_redefine')(RegExp.prototype, TO_STRING, fn, true);\n};\n\n// 21.2.5.14 RegExp.prototype.toString()\nif (require('./_fails')(function () { return $toString.call({ source: 'a', flags: 'b' }) != '/a/b'; })) {\n define(function toString() {\n var R = anObject(this);\n return '/'.concat(R.source, '/',\n 'flags' in R ? R.flags : !DESCRIPTORS && R instanceof RegExp ? $flags.call(R) : undefined);\n });\n// FF44- RegExp#toString has a wrong name\n} else if ($toString.name != TO_STRING) {\n define(function toString() {\n return $toString.call(this);\n });\n}\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n","var core = module.exports = { version: '2.5.7' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","module.exports = {};\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","// @@replace logic\nrequire('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) {\n // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)\n return [function replace(searchValue, replaceValue) {\n 'use strict';\n var O = defined(this);\n var fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n return fn !== undefined\n ? fn.call(searchValue, O, replaceValue)\n : $replace.call(String(O), searchValue, replaceValue);\n }, $replace];\n});\n","var $export = require('./_export');\nvar defined = require('./_defined');\nvar fails = require('./_fails');\nvar spaces = require('./_string-ws');\nvar space = '[' + spaces + ']';\nvar non = '\\u200b\\u0085';\nvar ltrim = RegExp('^' + space + space + '*');\nvar rtrim = RegExp(space + space + '*$');\n\nvar exporter = function (KEY, exec, ALIAS) {\n var exp = {};\n var FORCE = fails(function () {\n return !!spaces[KEY]() || non[KEY]() != non;\n });\n var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY];\n if (ALIAS) exp[ALIAS] = fn;\n $export($export.P + $export.F * FORCE, 'String', exp);\n};\n\n// 1 -> String#trimLeft\n// 2 -> String#trimRight\n// 3 -> String#trim\nvar trim = exporter.trim = function (string, TYPE) {\n string = String(defined(string));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n};\n\nmodule.exports = exporter;\n","var $iterators = require('./es6.array.iterator');\nvar getKeys = require('./_object-keys');\nvar redefine = require('./_redefine');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar wks = require('./_wks');\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","'use strict';\nvar global = require('./_global');\nvar has = require('./_has');\nvar cof = require('./_cof');\nvar inheritIfRequired = require('./_inherit-if-required');\nvar toPrimitive = require('./_to-primitive');\nvar fails = require('./_fails');\nvar gOPN = require('./_object-gopn').f;\nvar gOPD = require('./_object-gopd').f;\nvar dP = require('./_object-dp').f;\nvar $trim = require('./_string-trim').trim;\nvar NUMBER = 'Number';\nvar $Number = global[NUMBER];\nvar Base = $Number;\nvar proto = $Number.prototype;\n// Opera ~12 has broken Object#toString\nvar BROKEN_COF = cof(require('./_object-create')(proto)) == NUMBER;\nvar TRIM = 'trim' in String.prototype;\n\n// 7.1.3 ToNumber(argument)\nvar toNumber = function (argument) {\n var it = toPrimitive(argument, false);\n if (typeof it == 'string' && it.length > 2) {\n it = TRIM ? it.trim() : $trim(it, 3);\n var first = it.charCodeAt(0);\n var third, radix, maxCode;\n if (first === 43 || first === 45) {\n third = it.charCodeAt(2);\n if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix\n } else if (first === 48) {\n switch (it.charCodeAt(1)) {\n case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n default: return +it;\n }\n for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) {\n code = digits.charCodeAt(i);\n // parseInt parses a string to a first unavailable symbol\n // but ToNumber should return NaN if a string contains unavailable symbols\n if (code < 48 || code > maxCode) return NaN;\n } return parseInt(digits, radix);\n }\n } return +it;\n};\n\nif (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) {\n $Number = function Number(value) {\n var it = arguments.length < 1 ? 0 : value;\n var that = this;\n return that instanceof $Number\n // check on 1..constructor(foo) case\n && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER)\n ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n };\n for (var keys = require('./_descriptors') ? gOPN(Base) : (\n // ES3:\n 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n // ES6 (in case, if modules with ES6 Number statics required before):\n 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n ).split(','), j = 0, key; keys.length > j; j++) {\n if (has(Base, key = keys[j]) && !has($Number, key)) {\n dP($Number, key, gOPD(Base, key));\n }\n }\n $Number.prototype = proto;\n proto.constructor = $Number;\n require('./_redefine')(global, NUMBER, $Number);\n}\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('img',{attrs:{\"src\":_vm.mapUrl}})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./static-map.vue?vue&type=template&id=5f546ca9&\"\nimport script from \"./static-map.vue?vue&type=script&lang=js&\"\nexport * from \"./static-map.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"static-map.vue\"\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","module.exports = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003' +\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/StaticMap.umd.js b/dist/StaticMap.umd.js index a4407c3..dac11b1 100644 --- a/dist/StaticMap.umd.js +++ b/dist/StaticMap.umd.js @@ -1,1247 +1,1536 @@ (function webpackUniversalModuleDefinition(root, factory) { - if(typeof exports === 'object' && typeof module === 'object') - module.exports = factory(); - else if(typeof define === 'function' && define.amd) - define([], factory); - else if(typeof exports === 'object') - exports["StaticMap"] = factory(); - else - root["StaticMap"] = factory(); -})((typeof self !== 'undefined' ? self : this), function() { -return /******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) { -/******/ return installedModules[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ i: moduleId, -/******/ l: false, -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); -/******/ -/******/ // Flag the module as loaded -/******/ module.l = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; -/******/ -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; -/******/ -/******/ // define getter function for harmony exports -/******/ __webpack_require__.d = function(exports, name, getter) { -/******/ if(!__webpack_require__.o(exports, name)) { -/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); -/******/ } -/******/ }; -/******/ -/******/ // define __esModule on exports -/******/ __webpack_require__.r = function(exports) { -/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { -/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); -/******/ } -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ -/******/ // create a fake namespace object -/******/ // mode & 1: value is a module id, require it -/******/ // mode & 2: merge all properties of value into the ns -/******/ // mode & 4: return value when already ns object -/******/ // mode & 8|1: behave like require -/******/ __webpack_require__.t = function(value, mode) { -/******/ if(mode & 1) value = __webpack_require__(value); -/******/ if(mode & 8) return value; -/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; -/******/ var ns = Object.create(null); -/******/ __webpack_require__.r(ns); -/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); -/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); -/******/ return ns; -/******/ }; -/******/ -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = function(module) { -/******/ var getter = module && module.__esModule ? -/******/ function getDefault() { return module['default']; } : -/******/ function getModuleExports() { return module; }; -/******/ __webpack_require__.d(getter, 'a', getter); -/******/ return getter; -/******/ }; -/******/ -/******/ // Object.prototype.hasOwnProperty.call -/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; -/******/ -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; -/******/ -/******/ -/******/ // Load entry module and return exports -/******/ return __webpack_require__(__webpack_require__.s = "fb15"); -/******/ }) -/************************************************************************/ -/******/ ({ - -/***/ "0d58": -/***/ (function(module, exports, __webpack_require__) { - -// 19.1.2.14 / 15.2.3.14 Object.keys(O) -var $keys = __webpack_require__("ce10"); -var enumBugKeys = __webpack_require__("e11e"); - -module.exports = Object.keys || function keys(O) { - return $keys(O, enumBugKeys); -}; - - -/***/ }), - -/***/ "11e9": -/***/ (function(module, exports, __webpack_require__) { - -var pIE = __webpack_require__("52a7"); -var createDesc = __webpack_require__("4630"); -var toIObject = __webpack_require__("6821"); -var toPrimitive = __webpack_require__("6a99"); -var has = __webpack_require__("69a8"); -var IE8_DOM_DEFINE = __webpack_require__("c69a"); -var gOPD = Object.getOwnPropertyDescriptor; - -exports.f = __webpack_require__("9e1e") ? gOPD : function getOwnPropertyDescriptor(O, P) { - O = toIObject(O); - P = toPrimitive(P, true); - if (IE8_DOM_DEFINE) try { - return gOPD(O, P); - } catch (e) { /* empty */ } - if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); -}; - - -/***/ }), - -/***/ "1495": -/***/ (function(module, exports, __webpack_require__) { - -var dP = __webpack_require__("86cc"); -var anObject = __webpack_require__("cb7c"); -var getKeys = __webpack_require__("0d58"); - -module.exports = __webpack_require__("9e1e") ? Object.defineProperties : function defineProperties(O, Properties) { - anObject(O); - var keys = getKeys(Properties); - var length = keys.length; - var i = 0; - var P; - while (length > i) dP.f(O, P = keys[i++], Properties[P]); - return O; -}; - - -/***/ }), - -/***/ "1eb2": -/***/ (function(module, exports, __webpack_require__) { - -// This file is imported into lib/wc client bundles. - -if (typeof window !== 'undefined') { - var i - if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js$/))) { + if (typeof exports === 'object' && typeof module === 'object') { module.exports = factory(); } else if (typeof define === 'function' && define.amd) { define([], factory); } else if (typeof exports === 'object') { exports.StaticMap = factory(); } else { root.StaticMap = factory(); } +}((typeof self !== 'undefined' ? self : this), () => +/** *** */ (function (modules) { // webpackBootstrap + /** *** */ // The module cache + /** *** */ const installedModules = {}; + /** *** */ + /** *** */ // The require function + /** *** */ function __webpack_require__(moduleId) { + /** *** */ + /** *** */ // Check if module is in cache + /** *** */ if (installedModules[moduleId]) { + /** *** */ return installedModules[moduleId].exports; + /** *** */ } + /** *** */ // Create a new module (and put it into the cache) + /** *** */ const module = installedModules[moduleId] = { + /** *** */ i: moduleId, + /** *** */ l: false, + /** *** */ exports: {}, + /** *** */ }; + /** *** */ + /** *** */ // Execute the module function + /** *** */ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); + /** *** */ + /** *** */ // Flag the module as loaded + /** *** */ module.l = true; + /** *** */ + /** *** */ // Return the exports of the module + /** *** */ return module.exports; + /** *** */ } + /** *** */ + /** *** */ + /** *** */ // expose the modules object (__webpack_modules__) + /** *** */ __webpack_require__.m = modules; + /** *** */ + /** *** */ // expose the module cache + /** *** */ __webpack_require__.c = installedModules; + /** *** */ + /** *** */ // define getter function for harmony exports + /** *** */ __webpack_require__.d = function (exports, name, getter) { + /** *** */ if (!__webpack_require__.o(exports, name)) { + /** *** */ Object.defineProperty(exports, name, { enumerable: true, get: getter }); + /** *** */ } + /** *** */ }; + /** *** */ + /** *** */ // define __esModule on exports + /** *** */ __webpack_require__.r = function (exports) { + /** *** */ if (typeof Symbol !== 'undefined' && Symbol.toStringTag) { + /** *** */ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); + /** *** */ } + /** *** */ Object.defineProperty(exports, '__esModule', { value: true }); + /** *** */ }; + /** *** */ + /** *** */ // create a fake namespace object + /** *** */ // mode & 1: value is a module id, require it + /** *** */ // mode & 2: merge all properties of value into the ns + /** *** */ // mode & 4: return value when already ns object + /** *** */ // mode & 8|1: behave like require + /** *** */ __webpack_require__.t = function (value, mode) { + /** *** */ if (mode & 1) value = __webpack_require__(value); + /** *** */ if (mode & 8) return value; + /** *** */ if ((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; + /** *** */ const ns = Object.create(null); + /** *** */ __webpack_require__.r(ns); + /** *** */ Object.defineProperty(ns, 'default', { enumerable: true, value }); + /** *** */ if (mode & 2 && typeof value !== 'string') for (const key in value) __webpack_require__.d(ns, key, (key => value[key]).bind(null, key)); + /** *** */ return ns; + /** *** */ }; + /** *** */ + /** *** */ // getDefaultExport function for compatibility with non-harmony modules + /** *** */ __webpack_require__.n = function (module) { + /** *** */ const getter = module && module.__esModule ? + /** *** */ function getDefault() { return module.default; } : + /** *** */ function getModuleExports() { return module; }; + /** *** */ __webpack_require__.d(getter, 'a', getter); + /** *** */ return getter; + /** *** */ }; + /** *** */ + /** *** */ // Object.prototype.hasOwnProperty.call + /** *** */ __webpack_require__.o = function (object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; + /** *** */ + /** *** */ // __webpack_public_path__ + /** *** */ __webpack_require__.p = ''; + /** *** */ + /** *** */ + /** *** */ // Load entry module and return exports + /** *** */ return __webpack_require__(__webpack_require__.s = 'fb15'); + /** *** */ }({ + + /** */ '01f9': + /** */ (function (module, exports, __webpack_require__) { + const LIBRARY = __webpack_require__('2d00'); + const $export = __webpack_require__('5ca1'); + const redefine = __webpack_require__('2aba'); + const hide = __webpack_require__('32e9'); + const Iterators = __webpack_require__('84f2'); + const $iterCreate = __webpack_require__('41a0'); + const setToStringTag = __webpack_require__('7f20'); + const getPrototypeOf = __webpack_require__('38fd'); + const ITERATOR = __webpack_require__('2b4c')('iterator'); + const BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next` + const FF_ITERATOR = '@@iterator'; + const KEYS = 'keys'; + const VALUES = 'values'; + + const returnThis = function () { return this; }; + + module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) { + $iterCreate(Constructor, NAME, next); + const getMethod = function (kind) { + if (!BUGGY && kind in proto) return proto[kind]; + switch (kind) { + case KEYS: return function keys() { return new Constructor(this, kind); }; + case VALUES: return function values() { return new Constructor(this, kind); }; + } return function entries() { return new Constructor(this, kind); }; + }; + const TAG = `${NAME} Iterator`; + const DEF_VALUES = DEFAULT == VALUES; + let VALUES_BUG = false; + var proto = Base.prototype; + const $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT]; + let $default = $native || getMethod(DEFAULT); + const $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined; + const $anyNative = NAME == 'Array' ? proto.entries || $native : $native; + let methods, + key, + IteratorPrototype; + // Fix native + if ($anyNative) { + IteratorPrototype = getPrototypeOf($anyNative.call(new Base())); + if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) { + // Set @@toStringTag to native iterators + setToStringTag(IteratorPrototype, TAG, true); + // fix for some old engines + if (!LIBRARY && typeof IteratorPrototype[ITERATOR] !== 'function') hide(IteratorPrototype, ITERATOR, returnThis); + } + } + // fix Array#{values, @@iterator}.name in V8 / FF + if (DEF_VALUES && $native && $native.name !== VALUES) { + VALUES_BUG = true; + $default = function values() { return $native.call(this); }; + } + // Define iterator + if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) { + hide(proto, ITERATOR, $default); + } + // Plug for library + Iterators[NAME] = $default; + Iterators[TAG] = returnThis; + if (DEFAULT) { + methods = { + values: DEF_VALUES ? $default : getMethod(VALUES), + keys: IS_SET ? $default : getMethod(KEYS), + entries: $entries, + }; + if (FORCED) { + for (key in methods) { + if (!(key in proto)) redefine(proto, key, methods[key]); + } + } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods); + } + return methods; + }; + /** */ }), + + /** */ '0bfb': + /** */ (function (module, exports, __webpack_require__) { + // 21.2.5.3 get RegExp.prototype.flags + const anObject = __webpack_require__('cb7c'); + module.exports = function () { + const that = anObject(this); + let result = ''; + if (that.global) result += 'g'; + if (that.ignoreCase) result += 'i'; + if (that.multiline) result += 'm'; + if (that.unicode) result += 'u'; + if (that.sticky) result += 'y'; + return result; + }; + /** */ }), + + /** */ '0d58': + /** */ (function (module, exports, __webpack_require__) { + // 19.1.2.14 / 15.2.3.14 Object.keys(O) + const $keys = __webpack_require__('ce10'); + const enumBugKeys = __webpack_require__('e11e'); + + module.exports = Object.keys || function keys(O) { + return $keys(O, enumBugKeys); + }; + /** */ }), + + /** */ '11e9': + /** */ (function (module, exports, __webpack_require__) { + const pIE = __webpack_require__('52a7'); + const createDesc = __webpack_require__('4630'); + const toIObject = __webpack_require__('6821'); + const toPrimitive = __webpack_require__('6a99'); + const has = __webpack_require__('69a8'); + const IE8_DOM_DEFINE = __webpack_require__('c69a'); + const gOPD = Object.getOwnPropertyDescriptor; + + exports.f = __webpack_require__('9e1e') ? gOPD : function getOwnPropertyDescriptor(O, P) { + O = toIObject(O); + P = toPrimitive(P, true); + if (IE8_DOM_DEFINE) { + try { + return gOPD(O, P); + } catch (e) { /* empty */ } + } + if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); + }; + /** */ }), + + /** */ 1495(module, exports, __webpack_require__) { + const dP = __webpack_require__('86cc'); + const anObject = __webpack_require__('cb7c'); + const getKeys = __webpack_require__('0d58'); + + module.exports = __webpack_require__('9e1e') ? Object.defineProperties : function defineProperties(O, Properties) { + anObject(O); + const keys = getKeys(Properties); + const length = keys.length; + let i = 0; + let P; + while (length > i) dP.f(O, P = keys[i++], Properties[P]); + return O; + }; + /** */ }, + + /** */ '1eb2': + /** */ (function (module, exports, __webpack_require__) { + // This file is imported into lib/wc client bundles. + + if (typeof window !== 'undefined') { + let i; + if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js$/))) { __webpack_require__.p = i[1] // eslint-disable-line - } -} - - -/***/ }), - -/***/ "230e": -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__("d3f4"); -var document = __webpack_require__("7726").document; -// typeof document.createElement is 'object' in old IE -var is = isObject(document) && isObject(document.createElement); -module.exports = function (it) { - return is ? document.createElement(it) : {}; -}; - - -/***/ }), - -/***/ "2aba": -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__("7726"); -var hide = __webpack_require__("32e9"); -var has = __webpack_require__("69a8"); -var SRC = __webpack_require__("ca5a")('src'); -var TO_STRING = 'toString'; -var $toString = Function[TO_STRING]; -var TPL = ('' + $toString).split(TO_STRING); - -__webpack_require__("8378").inspectSource = function (it) { - return $toString.call(it); -}; - -(module.exports = function (O, key, val, safe) { - var isFunction = typeof val == 'function'; - if (isFunction) has(val, 'name') || hide(val, 'name', key); - if (O[key] === val) return; - if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key))); - if (O === global) { - O[key] = val; - } else if (!safe) { - delete O[key]; - hide(O, key, val); - } else if (O[key]) { - O[key] = val; - } else { - hide(O, key, val); - } -// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative -})(Function.prototype, TO_STRING, function toString() { - return typeof this == 'function' && this[SRC] || $toString.call(this); -}); - - -/***/ }), - -/***/ "2aeb": -/***/ (function(module, exports, __webpack_require__) { - -// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) -var anObject = __webpack_require__("cb7c"); -var dPs = __webpack_require__("1495"); -var enumBugKeys = __webpack_require__("e11e"); -var IE_PROTO = __webpack_require__("613b")('IE_PROTO'); -var Empty = function () { /* empty */ }; -var PROTOTYPE = 'prototype'; - -// Create object with fake `null` prototype: use iframe Object with cleared prototype -var createDict = function () { - // Thrash, waste and sodomy: IE GC bug - var iframe = __webpack_require__("230e")('iframe'); - var i = enumBugKeys.length; - var lt = '<'; - var gt = '>'; - var iframeDocument; - iframe.style.display = 'none'; - __webpack_require__("fab2").appendChild(iframe); - iframe.src = 'javascript:'; // eslint-disable-line no-script-url - // createDict = iframe.contentWindow.Object; - // html.removeChild(iframe); - iframeDocument = iframe.contentWindow.document; - iframeDocument.open(); - iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt); - iframeDocument.close(); - createDict = iframeDocument.F; - while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]]; - return createDict(); -}; - -module.exports = Object.create || function create(O, Properties) { - var result; - if (O !== null) { - Empty[PROTOTYPE] = anObject(O); - result = new Empty(); - Empty[PROTOTYPE] = null; - // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; - } else result = createDict(); - return Properties === undefined ? result : dPs(result, Properties); -}; - - -/***/ }), - -/***/ "2d00": -/***/ (function(module, exports) { - -module.exports = false; - - -/***/ }), - -/***/ "2d95": -/***/ (function(module, exports) { - -var toString = {}.toString; - -module.exports = function (it) { - return toString.call(it).slice(8, -1); -}; - - -/***/ }), - -/***/ "32e9": -/***/ (function(module, exports, __webpack_require__) { - -var dP = __webpack_require__("86cc"); -var createDesc = __webpack_require__("4630"); -module.exports = __webpack_require__("9e1e") ? function (object, key, value) { - return dP.f(object, key, createDesc(1, value)); -} : function (object, key, value) { - object[key] = value; - return object; -}; - - -/***/ }), - -/***/ "4588": -/***/ (function(module, exports) { - -// 7.1.4 ToInteger -var ceil = Math.ceil; -var floor = Math.floor; -module.exports = function (it) { - return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); -}; - - -/***/ }), - -/***/ "4630": -/***/ (function(module, exports) { - -module.exports = function (bitmap, value) { - return { - enumerable: !(bitmap & 1), - configurable: !(bitmap & 2), - writable: !(bitmap & 4), - value: value - }; -}; - - -/***/ }), - -/***/ "52a7": -/***/ (function(module, exports) { - -exports.f = {}.propertyIsEnumerable; - - -/***/ }), - -/***/ "5537": -/***/ (function(module, exports, __webpack_require__) { - -var core = __webpack_require__("8378"); -var global = __webpack_require__("7726"); -var SHARED = '__core-js_shared__'; -var store = global[SHARED] || (global[SHARED] = {}); - -(module.exports = function (key, value) { - return store[key] || (store[key] = value !== undefined ? value : {}); -})('versions', []).push({ - version: core.version, - mode: __webpack_require__("2d00") ? 'pure' : 'global', - copyright: '© 2018 Denis Pushkarev (zloirock.ru)' -}); - - -/***/ }), - -/***/ "5ca1": -/***/ (function(module, exports, __webpack_require__) { - -var global = __webpack_require__("7726"); -var core = __webpack_require__("8378"); -var hide = __webpack_require__("32e9"); -var redefine = __webpack_require__("2aba"); -var ctx = __webpack_require__("9b43"); -var PROTOTYPE = 'prototype'; - -var $export = function (type, name, source) { - var IS_FORCED = type & $export.F; - var IS_GLOBAL = type & $export.G; - var IS_STATIC = type & $export.S; - var IS_PROTO = type & $export.P; - var IS_BIND = type & $export.B; - var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE]; - var exports = IS_GLOBAL ? core : core[name] || (core[name] = {}); - var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {}); - var key, own, out, exp; - if (IS_GLOBAL) source = name; - for (key in source) { - // contains in native - own = !IS_FORCED && target && target[key] !== undefined; - // export native or passed - out = (own ? target : source)[key]; - // bind timers to global for call from export context - exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; - // extend global - if (target) redefine(target, key, out, type & $export.U); - // export - if (exports[key] != out) hide(exports, key, exp); - if (IS_PROTO && expProto[key] != out) expProto[key] = out; - } -}; -global.core = core; -// type bitmap -$export.F = 1; // forced -$export.G = 2; // global -$export.S = 4; // static -$export.P = 8; // proto -$export.B = 16; // bind -$export.W = 32; // wrap -$export.U = 64; // safe -$export.R = 128; // real proto method for `library` -module.exports = $export; - - -/***/ }), - -/***/ "5dbc": -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__("d3f4"); -var setPrototypeOf = __webpack_require__("8b97").set; -module.exports = function (that, target, C) { - var S = target.constructor; - var P; - if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) { - setPrototypeOf(that, P); - } return that; -}; - - -/***/ }), - -/***/ "613b": -/***/ (function(module, exports, __webpack_require__) { - -var shared = __webpack_require__("5537")('keys'); -var uid = __webpack_require__("ca5a"); -module.exports = function (key) { - return shared[key] || (shared[key] = uid(key)); -}; - - -/***/ }), - -/***/ "626a": -/***/ (function(module, exports, __webpack_require__) { - -// fallback for non-array-like ES3 and non-enumerable old V8 strings -var cof = __webpack_require__("2d95"); -// eslint-disable-next-line no-prototype-builtins -module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { - return cof(it) == 'String' ? it.split('') : Object(it); -}; - - -/***/ }), - -/***/ "6821": -/***/ (function(module, exports, __webpack_require__) { - -// to indexed object, toObject with fallback for non-array-like ES3 strings -var IObject = __webpack_require__("626a"); -var defined = __webpack_require__("be13"); -module.exports = function (it) { - return IObject(defined(it)); -}; - - -/***/ }), - -/***/ "69a8": -/***/ (function(module, exports) { - -var hasOwnProperty = {}.hasOwnProperty; -module.exports = function (it, key) { - return hasOwnProperty.call(it, key); -}; - - -/***/ }), - -/***/ "6a99": -/***/ (function(module, exports, __webpack_require__) { - -// 7.1.1 ToPrimitive(input [, PreferredType]) -var isObject = __webpack_require__("d3f4"); -// instead of the ES6 spec version, we didn't implement @@toPrimitive case -// and the second argument - flag - preferred type is a string -module.exports = function (it, S) { - if (!isObject(it)) return it; - var fn, val; - if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; - if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val; - if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; - throw TypeError("Can't convert object to primitive value"); -}; - - -/***/ }), - -/***/ "7726": -/***/ (function(module, exports) { - -// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 -var global = module.exports = typeof window != 'undefined' && window.Math == Math - ? window : typeof self != 'undefined' && self.Math == Math ? self - // eslint-disable-next-line no-new-func - : Function('return this')(); -if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef - - -/***/ }), - -/***/ "77f1": -/***/ (function(module, exports, __webpack_require__) { - -var toInteger = __webpack_require__("4588"); -var max = Math.max; -var min = Math.min; -module.exports = function (index, length) { - index = toInteger(index); - return index < 0 ? max(index + length, 0) : min(index, length); -}; - - -/***/ }), - -/***/ "79e5": -/***/ (function(module, exports) { - -module.exports = function (exec) { - try { - return !!exec(); - } catch (e) { - return true; - } -}; - - -/***/ }), - -/***/ "8378": -/***/ (function(module, exports) { - -var core = module.exports = { version: '2.5.7' }; -if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef - - -/***/ }), - -/***/ "86cc": -/***/ (function(module, exports, __webpack_require__) { - -var anObject = __webpack_require__("cb7c"); -var IE8_DOM_DEFINE = __webpack_require__("c69a"); -var toPrimitive = __webpack_require__("6a99"); -var dP = Object.defineProperty; - -exports.f = __webpack_require__("9e1e") ? Object.defineProperty : function defineProperty(O, P, Attributes) { - anObject(O); - P = toPrimitive(P, true); - anObject(Attributes); - if (IE8_DOM_DEFINE) try { - return dP(O, P, Attributes); - } catch (e) { /* empty */ } - if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!'); - if ('value' in Attributes) O[P] = Attributes.value; - return O; -}; - - -/***/ }), - -/***/ "8b97": -/***/ (function(module, exports, __webpack_require__) { - -// Works with __proto__ only. Old v8 can't work with null proto objects. -/* eslint-disable no-proto */ -var isObject = __webpack_require__("d3f4"); -var anObject = __webpack_require__("cb7c"); -var check = function (O, proto) { - anObject(O); - if (!isObject(proto) && proto !== null) throw TypeError(proto + ": can't set as prototype!"); -}; -module.exports = { + } + } + /** */ }), + + /** */ '214f': + /** */ (function (module, exports, __webpack_require__) { + const hide = __webpack_require__('32e9'); + const redefine = __webpack_require__('2aba'); + const fails = __webpack_require__('79e5'); + const defined = __webpack_require__('be13'); + const wks = __webpack_require__('2b4c'); + + module.exports = function (KEY, length, exec) { + const SYMBOL = wks(KEY); + const fns = exec(defined, SYMBOL, ''[KEY]); + const strfn = fns[0]; + const rxfn = fns[1]; + if (fails(() => { + const O = {}; + O[SYMBOL] = function () { return 7; }; + return ''[KEY](O) != 7; + })) { + redefine(String.prototype, KEY, strfn); + hide(RegExp.prototype, SYMBOL, length == 2 + // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue) + // 21.2.5.11 RegExp.prototype[@@split](string, limit) + ? function (string, arg) { return rxfn.call(string, this, arg); } + // 21.2.5.6 RegExp.prototype[@@match](string) + // 21.2.5.9 RegExp.prototype[@@search](string) + : function (string) { return rxfn.call(string, this); }); + } + }; + /** */ }), + + /** */ '230e': + /** */ (function (module, exports, __webpack_require__) { + const isObject = __webpack_require__('d3f4'); + const document = __webpack_require__('7726').document; + // typeof document.createElement is 'object' in old IE + const is = isObject(document) && isObject(document.createElement); + module.exports = function (it) { + return is ? document.createElement(it) : {}; + }; + /** */ }), + + /** */ '2aba': + /** */ (function (module, exports, __webpack_require__) { + const global = __webpack_require__('7726'); + const hide = __webpack_require__('32e9'); + const has = __webpack_require__('69a8'); + const SRC = __webpack_require__('ca5a')('src'); + const TO_STRING = 'toString'; + const $toString = Function[TO_STRING]; + const TPL = (`${$toString}`).split(TO_STRING); + + __webpack_require__('8378').inspectSource = function (it) { + return $toString.call(it); + }; + + (module.exports = function (O, key, val, safe) { + const isFunction = typeof val === 'function'; + if (isFunction) has(val, 'name') || hide(val, 'name', key); + if (O[key] === val) return; + if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? `${O[key]}` : TPL.join(String(key))); + if (O === global) { + O[key] = val; + } else if (!safe) { + delete O[key]; + hide(O, key, val); + } else if (O[key]) { + O[key] = val; + } else { + hide(O, key, val); + } + // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative + })(Function.prototype, TO_STRING, function toString() { + return typeof this === 'function' && this[SRC] || $toString.call(this); + }); + /** */ }), + + /** */ '2aeb': + /** */ (function (module, exports, __webpack_require__) { + // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) + const anObject = __webpack_require__('cb7c'); + const dPs = __webpack_require__('1495'); + const enumBugKeys = __webpack_require__('e11e'); + const IE_PROTO = __webpack_require__('613b')('IE_PROTO'); + const Empty = function () { /* empty */ }; + const PROTOTYPE = 'prototype'; + + // Create object with fake `null` prototype: use iframe Object with cleared prototype + var createDict = function () { + // Thrash, waste and sodomy: IE GC bug + const iframe = __webpack_require__('230e')('iframe'); + let i = enumBugKeys.length; + const lt = '<'; + const gt = '>'; + let iframeDocument; + iframe.style.display = 'none'; + __webpack_require__('fab2').appendChild(iframe); + iframe.src = 'javascript:'; // eslint-disable-line no-script-url + // createDict = iframe.contentWindow.Object; + // html.removeChild(iframe); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(`${lt}script${gt}document.F=Object${lt}/script${gt}`); + iframeDocument.close(); + createDict = iframeDocument.F; + while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]]; + return createDict(); + }; + + module.exports = Object.create || function create(O, Properties) { + let result; + if (O !== null) { + Empty[PROTOTYPE] = anObject(O); + result = new Empty(); + Empty[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf polyfill + result[IE_PROTO] = O; + } else result = createDict(); + return Properties === undefined ? result : dPs(result, Properties); + }; + /** */ }), + + /** */ '2b4c': + /** */ (function (module, exports, __webpack_require__) { + const store = __webpack_require__('5537')('wks'); + const uid = __webpack_require__('ca5a'); + const Symbol = __webpack_require__('7726').Symbol; + const USE_SYMBOL = typeof Symbol === 'function'; + + const $exports = module.exports = function (name) { + return store[name] || (store[name] = + USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)(`Symbol.${name}`)); + }; + + $exports.store = store; + /** */ }), + + /** */ '2d00': + /** */ (function (module, exports) { + module.exports = false; + /** */ }), + + /** */ '2d95': + /** */ (function (module, exports) { + const toString = {}.toString; + + module.exports = function (it) { + return toString.call(it).slice(8, -1); + }; + /** */ }), + + /** */ '32e9': + /** */ (function (module, exports, __webpack_require__) { + const dP = __webpack_require__('86cc'); + const createDesc = __webpack_require__('4630'); + module.exports = __webpack_require__('9e1e') ? function (object, key, value) { + return dP.f(object, key, createDesc(1, value)); + } : function (object, key, value) { + object[key] = value; + return object; + }; + /** */ }), + + /** */ 3846(module, exports, __webpack_require__) { + // 21.2.5.3 get RegExp.prototype.flags() + if (__webpack_require__('9e1e') && /./g.flags != 'g') { + __webpack_require__('86cc').f(RegExp.prototype, 'flags', { + configurable: true, + get: __webpack_require__('0bfb'), + }); + } + /** */ }, + + /** */ '38fd': + /** */ (function (module, exports, __webpack_require__) { + // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) + const has = __webpack_require__('69a8'); + const toObject = __webpack_require__('4bf8'); + const IE_PROTO = __webpack_require__('613b')('IE_PROTO'); + const ObjectProto = Object.prototype; + + module.exports = Object.getPrototypeOf || function (O) { + O = toObject(O); + if (has(O, IE_PROTO)) return O[IE_PROTO]; + if (typeof O.constructor === 'function' && O instanceof O.constructor) { + return O.constructor.prototype; + } return O instanceof Object ? ObjectProto : null; + }; + /** */ }), + + /** */ '41a0': + /** */ (function (module, exports, __webpack_require__) { + const create = __webpack_require__('2aeb'); + const descriptor = __webpack_require__('4630'); + const setToStringTag = __webpack_require__('7f20'); + const IteratorPrototype = {}; + + // 25.1.2.1.1 %IteratorPrototype%[@@iterator]() + __webpack_require__('32e9')(IteratorPrototype, __webpack_require__('2b4c')('iterator'), function () { return this; }); + + module.exports = function (Constructor, NAME, next) { + Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) }); + setToStringTag(Constructor, `${NAME} Iterator`); + }; + /** */ }), + + /** */ '456d': + /** */ (function (module, exports, __webpack_require__) { + // 19.1.2.14 Object.keys(O) + const toObject = __webpack_require__('4bf8'); + const $keys = __webpack_require__('0d58'); + + __webpack_require__('5eda')('keys', () => function keys(it) { + return $keys(toObject(it)); + }); + /** */ }), + + /** */ 4588(module, exports) { + // 7.1.4 ToInteger + const ceil = Math.ceil; + const floor = Math.floor; + module.exports = function (it) { + return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); + }; + /** */ }, + + /** */ 4630(module, exports) { + module.exports = function (bitmap, value) { + return { + enumerable: !(bitmap & 1), + configurable: !(bitmap & 2), + writable: !(bitmap & 4), + value, + }; + }; + /** */ }, + + /** */ '4bf8': + /** */ (function (module, exports, __webpack_require__) { + // 7.1.13 ToObject(argument) + const defined = __webpack_require__('be13'); + module.exports = function (it) { + return Object(defined(it)); + }; + /** */ }), + + /** */ '52a7': + /** */ (function (module, exports) { + exports.f = {}.propertyIsEnumerable; + /** */ }), + + /** */ 5537(module, exports, __webpack_require__) { + const core = __webpack_require__('8378'); + const global = __webpack_require__('7726'); + const SHARED = '__core-js_shared__'; + const store = global[SHARED] || (global[SHARED] = {}); + + (module.exports = function (key, value) { + return store[key] || (store[key] = value !== undefined ? value : {}); + })('versions', []).push({ + version: core.version, + mode: __webpack_require__('2d00') ? 'pure' : 'global', + copyright: '© 2018 Denis Pushkarev (zloirock.ru)', + }); + /** */ }, + + /** */ '5ca1': + /** */ (function (module, exports, __webpack_require__) { + const global = __webpack_require__('7726'); + const core = __webpack_require__('8378'); + const hide = __webpack_require__('32e9'); + const redefine = __webpack_require__('2aba'); + const ctx = __webpack_require__('9b43'); + const PROTOTYPE = 'prototype'; + + var $export = function (type, name, source) { + const IS_FORCED = type & $export.F; + const IS_GLOBAL = type & $export.G; + const IS_STATIC = type & $export.S; + const IS_PROTO = type & $export.P; + const IS_BIND = type & $export.B; + const target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE]; + const exports = IS_GLOBAL ? core : core[name] || (core[name] = {}); + const expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {}); + let key, + own, + out, + exp; + if (IS_GLOBAL) source = name; + for (key in source) { + // contains in native + own = !IS_FORCED && target && target[key] !== undefined; + // export native or passed + out = (own ? target : source)[key]; + // bind timers to global for call from export context + exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out === 'function' ? ctx(Function.call, out) : out; + // extend global + if (target) redefine(target, key, out, type & $export.U); + // export + if (exports[key] != out) hide(exports, key, exp); + if (IS_PROTO && expProto[key] != out) expProto[key] = out; + } + }; + global.core = core; + // type bitmap + $export.F = 1; // forced + $export.G = 2; // global + $export.S = 4; // static + $export.P = 8; // proto + $export.B = 16; // bind + $export.W = 32; // wrap + $export.U = 64; // safe + $export.R = 128; // real proto method for `library` + module.exports = $export; + /** */ }), + + /** */ '5dbc': + /** */ (function (module, exports, __webpack_require__) { + const isObject = __webpack_require__('d3f4'); + const setPrototypeOf = __webpack_require__('8b97').set; + module.exports = function (that, target, C) { + const S = target.constructor; + let P; + if (S !== C && typeof S === 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) { + setPrototypeOf(that, P); + } return that; + }; + /** */ }), + + /** */ '5eda': + /** */ (function (module, exports, __webpack_require__) { + // most Object methods by ES6 should accept primitives + const $export = __webpack_require__('5ca1'); + const core = __webpack_require__('8378'); + const fails = __webpack_require__('79e5'); + module.exports = function (KEY, exec) { + const fn = (core.Object || {})[KEY] || Object[KEY]; + const exp = {}; + exp[KEY] = exec(fn); + $export($export.S + $export.F * fails(() => { fn(1); }), 'Object', exp); + }; + /** */ }), + + /** */ '613b': + /** */ (function (module, exports, __webpack_require__) { + const shared = __webpack_require__('5537')('keys'); + const uid = __webpack_require__('ca5a'); + module.exports = function (key) { + return shared[key] || (shared[key] = uid(key)); + }; + /** */ }), + + /** */ '626a': + /** */ (function (module, exports, __webpack_require__) { + // fallback for non-array-like ES3 and non-enumerable old V8 strings + const cof = __webpack_require__('2d95'); + // eslint-disable-next-line no-prototype-builtins + module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { + return cof(it) == 'String' ? it.split('') : Object(it); + }; + /** */ }), + + /** */ 6821(module, exports, __webpack_require__) { + // to indexed object, toObject with fallback for non-array-like ES3 strings + const IObject = __webpack_require__('626a'); + const defined = __webpack_require__('be13'); + module.exports = function (it) { + return IObject(defined(it)); + }; + /** */ }, + + /** */ '69a8': + /** */ (function (module, exports) { + const hasOwnProperty = {}.hasOwnProperty; + module.exports = function (it, key) { + return hasOwnProperty.call(it, key); + }; + /** */ }), + + /** */ '6a99': + /** */ (function (module, exports, __webpack_require__) { + // 7.1.1 ToPrimitive(input [, PreferredType]) + const isObject = __webpack_require__('d3f4'); + // instead of the ES6 spec version, we didn't implement @@toPrimitive case + // and the second argument - flag - preferred type is a string + module.exports = function (it, S) { + if (!isObject(it)) return it; + let fn, + val; + if (S && typeof (fn = it.toString) === 'function' && !isObject(val = fn.call(it))) return val; + if (typeof (fn = it.valueOf) === 'function' && !isObject(val = fn.call(it))) return val; + if (!S && typeof (fn = it.toString) === 'function' && !isObject(val = fn.call(it))) return val; + throw TypeError("Can't convert object to primitive value"); + }; + /** */ }), + + /** */ '6b54': + /** */ (function (module, exports, __webpack_require__) { + __webpack_require__('3846'); + const anObject = __webpack_require__('cb7c'); + const $flags = __webpack_require__('0bfb'); + const DESCRIPTORS = __webpack_require__('9e1e'); + const TO_STRING = 'toString'; + const $toString = /./[TO_STRING]; + + const define = function (fn) { + __webpack_require__('2aba')(RegExp.prototype, TO_STRING, fn, true); + }; + + // 21.2.5.14 RegExp.prototype.toString() + if (__webpack_require__('79e5')(() => $toString.call({ source: 'a', flags: 'b' }) != '/a/b')) { + define(function toString() { + const R = anObject(this); + return '/'.concat( + R.source, '/', + 'flags' in R ? R.flags : !DESCRIPTORS && R instanceof RegExp ? $flags.call(R) : undefined, + ); + }); + // FF44- RegExp#toString has a wrong name + } else if ($toString.name != TO_STRING) { + define(function toString() { + return $toString.call(this); + }); + } + /** */ }), + + /** */ 7726(module, exports) { + // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 + const global = module.exports = typeof window !== 'undefined' && window.Math == Math + ? window : typeof self !== 'undefined' && self.Math == Math ? self + // eslint-disable-next-line no-new-func + : Function('return this')(); + if (typeof __g === 'number') __g = global; // eslint-disable-line no-undef + /** */ }, + + /** */ '77f1': + /** */ (function (module, exports, __webpack_require__) { + const toInteger = __webpack_require__('4588'); + const max = Math.max; + const min = Math.min; + module.exports = function (index, length) { + index = toInteger(index); + return index < 0 ? max(index + length, 0) : min(index, length); + }; + /** */ }), + + /** */ '79e5': + /** */ (function (module, exports) { + module.exports = function (exec) { + try { + return !!exec(); + } catch (e) { + return true; + } + }; + /** */ }), + + /** */ '7f20': + /** */ (function (module, exports, __webpack_require__) { + const def = __webpack_require__('86cc').f; + const has = __webpack_require__('69a8'); + const TAG = __webpack_require__('2b4c')('toStringTag'); + + module.exports = function (it, tag, stat) { + if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag }); + }; + /** */ }), + + /** */ 8378(module, exports) { + const core = module.exports = { version: '2.5.7' }; + if (typeof __e === 'number') __e = core; // eslint-disable-line no-undef + /** */ }, + + /** */ '84f2': + /** */ (function (module, exports) { + module.exports = {}; + /** */ }), + + /** */ '86cc': + /** */ (function (module, exports, __webpack_require__) { + const anObject = __webpack_require__('cb7c'); + const IE8_DOM_DEFINE = __webpack_require__('c69a'); + const toPrimitive = __webpack_require__('6a99'); + const dP = Object.defineProperty; + + exports.f = __webpack_require__('9e1e') ? Object.defineProperty : function defineProperty(O, P, Attributes) { + anObject(O); + P = toPrimitive(P, true); + anObject(Attributes); + if (IE8_DOM_DEFINE) { + try { + return dP(O, P, Attributes); + } catch (e) { /* empty */ } + } + if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!'); + if ('value' in Attributes) O[P] = Attributes.value; + return O; + }; + /** */ }), + + /** */ '8b97': + /** */ (function (module, exports, __webpack_require__) { + // Works with __proto__ only. Old v8 can't work with null proto objects. + /* eslint-disable no-proto */ + const isObject = __webpack_require__('d3f4'); + const anObject = __webpack_require__('cb7c'); + const check = function (O, proto) { + anObject(O); + if (!isObject(proto) && proto !== null) throw TypeError(`${proto}: can't set as prototype!`); + }; + module.exports = { set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line - function (test, buggy, set) { - try { - set = __webpack_require__("9b43")(Function.call, __webpack_require__("11e9").f(Object.prototype, '__proto__').set, 2); - set(test, []); - buggy = !(test instanceof Array); - } catch (e) { buggy = true; } - return function setPrototypeOf(O, proto) { - check(O, proto); - if (buggy) O.__proto__ = proto; - else set(O, proto); - return O; - }; - }({}, false) : undefined), - check: check -}; - - -/***/ }), - -/***/ "9093": -/***/ (function(module, exports, __webpack_require__) { - -// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) -var $keys = __webpack_require__("ce10"); -var hiddenKeys = __webpack_require__("e11e").concat('length', 'prototype'); - -exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { - return $keys(O, hiddenKeys); -}; - - -/***/ }), - -/***/ "9b43": -/***/ (function(module, exports, __webpack_require__) { - -// optional / simple context binding -var aFunction = __webpack_require__("d8e8"); -module.exports = function (fn, that, length) { - aFunction(fn); - if (that === undefined) return fn; - switch (length) { - case 1: return function (a) { - return fn.call(that, a); - }; - case 2: return function (a, b) { - return fn.call(that, a, b); - }; - case 3: return function (a, b, c) { - return fn.call(that, a, b, c); - }; - } - return function (/* ...args */) { - return fn.apply(that, arguments); - }; -}; - - -/***/ }), - -/***/ "9def": -/***/ (function(module, exports, __webpack_require__) { - -// 7.1.15 ToLength -var toInteger = __webpack_require__("4588"); -var min = Math.min; -module.exports = function (it) { - return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 -}; - - -/***/ }), - -/***/ "9e1e": -/***/ (function(module, exports, __webpack_require__) { - -// Thank's IE8 for his funny defineProperty -module.exports = !__webpack_require__("79e5")(function () { - return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7; -}); - - -/***/ }), - -/***/ "aa77": -/***/ (function(module, exports, __webpack_require__) { - -var $export = __webpack_require__("5ca1"); -var defined = __webpack_require__("be13"); -var fails = __webpack_require__("79e5"); -var spaces = __webpack_require__("fdef"); -var space = '[' + spaces + ']'; -var non = '\u200b\u0085'; -var ltrim = RegExp('^' + space + space + '*'); -var rtrim = RegExp(space + space + '*$'); - -var exporter = function (KEY, exec, ALIAS) { - var exp = {}; - var FORCE = fails(function () { - return !!spaces[KEY]() || non[KEY]() != non; - }); - var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY]; - if (ALIAS) exp[ALIAS] = fn; - $export($export.P + $export.F * FORCE, 'String', exp); -}; - -// 1 -> String#trimLeft -// 2 -> String#trimRight -// 3 -> String#trim -var trim = exporter.trim = function (string, TYPE) { - string = String(defined(string)); - if (TYPE & 1) string = string.replace(ltrim, ''); - if (TYPE & 2) string = string.replace(rtrim, ''); - return string; -}; - -module.exports = exporter; - - -/***/ }), - -/***/ "be13": -/***/ (function(module, exports) { - -// 7.2.1 RequireObjectCoercible(argument) -module.exports = function (it) { - if (it == undefined) throw TypeError("Can't call method on " + it); - return it; -}; - - -/***/ }), - -/***/ "c366": -/***/ (function(module, exports, __webpack_require__) { - -// false -> Array#indexOf -// true -> Array#includes -var toIObject = __webpack_require__("6821"); -var toLength = __webpack_require__("9def"); -var toAbsoluteIndex = __webpack_require__("77f1"); -module.exports = function (IS_INCLUDES) { - return function ($this, el, fromIndex) { - var O = toIObject($this); - var length = toLength(O.length); - var index = toAbsoluteIndex(fromIndex, length); - var value; - // Array#includes uses SameValueZero equality algorithm - // eslint-disable-next-line no-self-compare - if (IS_INCLUDES && el != el) while (length > index) { - value = O[index++]; - // eslint-disable-next-line no-self-compare - if (value != value) return true; - // Array#indexOf ignores holes, Array#includes - not - } else for (;length > index; index++) if (IS_INCLUDES || index in O) { - if (O[index] === el) return IS_INCLUDES || index || 0; - } return !IS_INCLUDES && -1; - }; -}; - - -/***/ }), - -/***/ "c5f6": -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var global = __webpack_require__("7726"); -var has = __webpack_require__("69a8"); -var cof = __webpack_require__("2d95"); -var inheritIfRequired = __webpack_require__("5dbc"); -var toPrimitive = __webpack_require__("6a99"); -var fails = __webpack_require__("79e5"); -var gOPN = __webpack_require__("9093").f; -var gOPD = __webpack_require__("11e9").f; -var dP = __webpack_require__("86cc").f; -var $trim = __webpack_require__("aa77").trim; -var NUMBER = 'Number'; -var $Number = global[NUMBER]; -var Base = $Number; -var proto = $Number.prototype; -// Opera ~12 has broken Object#toString -var BROKEN_COF = cof(__webpack_require__("2aeb")(proto)) == NUMBER; -var TRIM = 'trim' in String.prototype; - -// 7.1.3 ToNumber(argument) -var toNumber = function (argument) { - var it = toPrimitive(argument, false); - if (typeof it == 'string' && it.length > 2) { - it = TRIM ? it.trim() : $trim(it, 3); - var first = it.charCodeAt(0); - var third, radix, maxCode; - if (first === 43 || first === 45) { - third = it.charCodeAt(2); - if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix - } else if (first === 48) { - switch (it.charCodeAt(1)) { - case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i - case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i - default: return +it; - } - for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) { - code = digits.charCodeAt(i); - // parseInt parses a string to a first unavailable symbol - // but ToNumber should return NaN if a string contains unavailable symbols - if (code < 48 || code > maxCode) return NaN; - } return parseInt(digits, radix); - } - } return +it; -}; - -if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { - $Number = function Number(value) { - var it = arguments.length < 1 ? 0 : value; - var that = this; - return that instanceof $Number + (function (test, buggy, set) { + try { + set = __webpack_require__('9b43')(Function.call, __webpack_require__('11e9').f(Object.prototype, '__proto__').set, 2); + set(test, []); + buggy = !(test instanceof Array); + } catch (e) { buggy = true; } + return function setPrototypeOf(O, proto) { + check(O, proto); + if (buggy) O.__proto__ = proto; + else set(O, proto); + return O; + }; + }({}, false)) : undefined), + check, + }; + /** */ }), + + /** */ 9093(module, exports, __webpack_require__) { + // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) + const $keys = __webpack_require__('ce10'); + const hiddenKeys = __webpack_require__('e11e').concat('length', 'prototype'); + + exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { + return $keys(O, hiddenKeys); + }; + /** */ }, + + /** */ '9b43': + /** */ (function (module, exports, __webpack_require__) { + // optional / simple context binding + const aFunction = __webpack_require__('d8e8'); + module.exports = function (fn, that, length) { + aFunction(fn); + if (that === undefined) return fn; + switch (length) { + case 1: return function (a) { + return fn.call(that, a); + }; + case 2: return function (a, b) { + return fn.call(that, a, b); + }; + case 3: return function (a, b, c) { + return fn.call(that, a, b, c); + }; + } + return function (/* ...args */) { + return fn.apply(that, arguments); + }; + }; + /** */ }), + + /** */ '9c6c': + /** */ (function (module, exports, __webpack_require__) { + // 22.1.3.31 Array.prototype[@@unscopables] + const UNSCOPABLES = __webpack_require__('2b4c')('unscopables'); + const ArrayProto = Array.prototype; + if (ArrayProto[UNSCOPABLES] == undefined) __webpack_require__('32e9')(ArrayProto, UNSCOPABLES, {}); + module.exports = function (key) { + ArrayProto[UNSCOPABLES][key] = true; + }; + /** */ }), + + /** */ '9def': + /** */ (function (module, exports, __webpack_require__) { + // 7.1.15 ToLength + const toInteger = __webpack_require__('4588'); + const min = Math.min; + module.exports = function (it) { + return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 + }; + /** */ }), + + /** */ '9e1e': + /** */ (function (module, exports, __webpack_require__) { + // Thank's IE8 for his funny defineProperty + module.exports = !__webpack_require__('79e5')(() => Object.defineProperty({}, 'a', { get() { return 7; } }).a != 7); + /** */ }), + + /** */ a481(module, exports, __webpack_require__) { + // @@replace logic + __webpack_require__('214f')('replace', 2, (defined, REPLACE, $replace) => + // 21.1.3.14 String.prototype.replace(searchValue, replaceValue) + [function replace(searchValue, replaceValue) { + const O = defined(this); + const fn = searchValue == undefined ? undefined : searchValue[REPLACE]; + return fn !== undefined + ? fn.call(searchValue, O, replaceValue) + : $replace.call(String(O), searchValue, replaceValue); + }, $replace]); + /** */ }, + + /** */ aa77(module, exports, __webpack_require__) { + const $export = __webpack_require__('5ca1'); + const defined = __webpack_require__('be13'); + const fails = __webpack_require__('79e5'); + const spaces = __webpack_require__('fdef'); + const space = `[${spaces}]`; + const non = '\u200b\u0085'; + const ltrim = RegExp(`^${space}${space}*`); + const rtrim = RegExp(`${space + space}*$`); + + const exporter = function (KEY, exec, ALIAS) { + const exp = {}; + const FORCE = fails(() => !!spaces[KEY]() || non[KEY]() != non); + const fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY]; + if (ALIAS) exp[ALIAS] = fn; + $export($export.P + $export.F * FORCE, 'String', exp); + }; + + // 1 -> String#trimLeft + // 2 -> String#trimRight + // 3 -> String#trim + var trim = exporter.trim = function (string, TYPE) { + string = String(defined(string)); + if (TYPE & 1) string = string.replace(ltrim, ''); + if (TYPE & 2) string = string.replace(rtrim, ''); + return string; + }; + + module.exports = exporter; + /** */ }, + + /** */ ac6a(module, exports, __webpack_require__) { + const $iterators = __webpack_require__('cadf'); + const getKeys = __webpack_require__('0d58'); + const redefine = __webpack_require__('2aba'); + const global = __webpack_require__('7726'); + const hide = __webpack_require__('32e9'); + const Iterators = __webpack_require__('84f2'); + const wks = __webpack_require__('2b4c'); + const ITERATOR = wks('iterator'); + const TO_STRING_TAG = wks('toStringTag'); + const ArrayValues = Iterators.Array; + + const DOMIterables = { + CSSRuleList: true, // TODO: Not spec compliant, should be false. + CSSStyleDeclaration: false, + CSSValueList: false, + ClientRectList: false, + DOMRectList: false, + DOMStringList: false, + DOMTokenList: true, + DataTransferItemList: false, + FileList: false, + HTMLAllCollection: false, + HTMLCollection: false, + HTMLFormElement: false, + HTMLSelectElement: false, + MediaList: true, // TODO: Not spec compliant, should be false. + MimeTypeArray: false, + NamedNodeMap: false, + NodeList: true, + PaintRequestList: false, + Plugin: false, + PluginArray: false, + SVGLengthList: false, + SVGNumberList: false, + SVGPathSegList: false, + SVGPointList: false, + SVGStringList: false, + SVGTransformList: false, + SourceBufferList: false, + StyleSheetList: true, // TODO: Not spec compliant, should be false. + TextTrackCueList: false, + TextTrackList: false, + TouchList: false, + }; + + for (let collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) { + const NAME = collections[i]; + const explicit = DOMIterables[NAME]; + const Collection = global[NAME]; + const proto = Collection && Collection.prototype; + var key; + if (proto) { + if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues); + if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME); + Iterators[NAME] = ArrayValues; + if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true); + } + } + /** */ }, + + /** */ be13(module, exports) { + // 7.2.1 RequireObjectCoercible(argument) + module.exports = function (it) { + if (it == undefined) throw TypeError(`Can't call method on ${it}`); + return it; + }; + /** */ }, + + /** */ c366(module, exports, __webpack_require__) { + // false -> Array#indexOf + // true -> Array#includes + const toIObject = __webpack_require__('6821'); + const toLength = __webpack_require__('9def'); + const toAbsoluteIndex = __webpack_require__('77f1'); + module.exports = function (IS_INCLUDES) { + return function ($this, el, fromIndex) { + const O = toIObject($this); + const length = toLength(O.length); + let index = toAbsoluteIndex(fromIndex, length); + let value; + // Array#includes uses SameValueZero equality algorithm + // eslint-disable-next-line no-self-compare + if (IS_INCLUDES && el != el) { + while (length > index) { + value = O[index++]; + // eslint-disable-next-line no-self-compare + if (value != value) return true; + // Array#indexOf ignores holes, Array#includes - not + } + } else { + for (;length > index; index++) { + if (IS_INCLUDES || index in O) { + if (O[index] === el) return IS_INCLUDES || index || 0; + } + } + } return !IS_INCLUDES && -1; + }; + }; + /** */ }, + + /** */ c5f6(module, exports, __webpack_require__) { + const global = __webpack_require__('7726'); + const has = __webpack_require__('69a8'); + const cof = __webpack_require__('2d95'); + const inheritIfRequired = __webpack_require__('5dbc'); + const toPrimitive = __webpack_require__('6a99'); + const fails = __webpack_require__('79e5'); + const gOPN = __webpack_require__('9093').f; + const gOPD = __webpack_require__('11e9').f; + const dP = __webpack_require__('86cc').f; + const $trim = __webpack_require__('aa77').trim; + const NUMBER = 'Number'; + let $Number = global[NUMBER]; + const Base = $Number; + const proto = $Number.prototype; + // Opera ~12 has broken Object#toString + const BROKEN_COF = cof(__webpack_require__('2aeb')(proto)) == NUMBER; + const TRIM = 'trim' in String.prototype; + + // 7.1.3 ToNumber(argument) + const toNumber = function (argument) { + let it = toPrimitive(argument, false); + if (typeof it === 'string' && it.length > 2) { + it = TRIM ? it.trim() : $trim(it, 3); + const first = it.charCodeAt(0); + let third, + radix, + maxCode; + if (first === 43 || first === 45) { + third = it.charCodeAt(2); + if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix + } else if (first === 48) { + switch (it.charCodeAt(1)) { + case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i + case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i + default: return +it; + } + for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) { + code = digits.charCodeAt(i); + // parseInt parses a string to a first unavailable symbol + // but ToNumber should return NaN if a string contains unavailable symbols + if (code < 48 || code > maxCode) return NaN; + } return parseInt(digits, radix); + } + } return +it; + }; + + if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { + $Number = function Number(value) { + const it = arguments.length < 1 ? 0 : value; + const that = this; + return that instanceof $Number // check on 1..constructor(foo) case - && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER) - ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it); - }; - for (var keys = __webpack_require__("9e1e") ? gOPN(Base) : ( - // ES3: - 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + + && (BROKEN_COF ? fails(() => { proto.valueOf.call(that); }) : cof(that) != NUMBER) + ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it); + }; + for (var keys = __webpack_require__('9e1e') ? gOPN(Base) : ( + // ES3: + 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + // ES6 (in case, if modules with ES6 Number statics required before): 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' + 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger' - ).split(','), j = 0, key; keys.length > j; j++) { - if (has(Base, key = keys[j]) && !has($Number, key)) { - dP($Number, key, gOPD(Base, key)); - } - } - $Number.prototype = proto; - proto.constructor = $Number; - __webpack_require__("2aba")(global, NUMBER, $Number); -} - - -/***/ }), - -/***/ "c69a": -/***/ (function(module, exports, __webpack_require__) { - -module.exports = !__webpack_require__("9e1e") && !__webpack_require__("79e5")(function () { - return Object.defineProperty(__webpack_require__("230e")('div'), 'a', { get: function () { return 7; } }).a != 7; -}); - - -/***/ }), - -/***/ "ca5a": -/***/ (function(module, exports) { - -var id = 0; -var px = Math.random(); -module.exports = function (key) { - return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); -}; - - -/***/ }), - -/***/ "cb7c": -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__("d3f4"); -module.exports = function (it) { - if (!isObject(it)) throw TypeError(it + ' is not an object!'); - return it; -}; - - -/***/ }), - -/***/ "ce10": -/***/ (function(module, exports, __webpack_require__) { - -var has = __webpack_require__("69a8"); -var toIObject = __webpack_require__("6821"); -var arrayIndexOf = __webpack_require__("c366")(false); -var IE_PROTO = __webpack_require__("613b")('IE_PROTO'); - -module.exports = function (object, names) { - var O = toIObject(object); - var i = 0; - var result = []; - var key; - for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key); - // Don't enum bug & hidden keys - while (names.length > i) if (has(O, key = names[i++])) { - ~arrayIndexOf(result, key) || result.push(key); - } - return result; -}; - - -/***/ }), - -/***/ "d3f4": -/***/ (function(module, exports) { - -module.exports = function (it) { - return typeof it === 'object' ? it !== null : typeof it === 'function'; -}; - - -/***/ }), - -/***/ "d8e8": -/***/ (function(module, exports) { - -module.exports = function (it) { - if (typeof it != 'function') throw TypeError(it + ' is not a function!'); - return it; -}; - - -/***/ }), - -/***/ "e11e": -/***/ (function(module, exports) { - -// IE 8- don't enum bug keys -module.exports = ( - 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' -).split(','); - - -/***/ }), - -/***/ "fab2": -/***/ (function(module, exports, __webpack_require__) { - -var document = __webpack_require__("7726").document; -module.exports = document && document.documentElement; - - -/***/ }), - -/***/ "fb15": -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); - -// EXTERNAL MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js -var setPublicPath = __webpack_require__("1eb2"); - -// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0595ba96-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/static-map.vue?vue&type=template&id=89561ac4& -var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('img',{attrs:{"src":_vm.mapUrl}})} -var staticRenderFns = [] - - -// CONCATENATED MODULE: ./src/components/static-map.vue?vue&type=template&id=89561ac4& - -// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.number.constructor.js -var es6_number_constructor = __webpack_require__("c5f6"); - -// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/static-map.vue?vue&type=script&lang=js& - -// -// -// -// -var BASE_URL_MAP = 'https://maps.googleapis.com/maps/api/staticmap?'; - -function generateFormatMap() { - return this.format.toLowerCase(); -} - -function generateMapType() { - var types = ['roadmap', 'satellite', 'hybrid', 'terrain']; - var currenType = this.type; - - if (types.indexOf(currenType) > -1) { - return currenType; - } - - var upperTypes = types.join(', ').toUpperCase(); - throw Error("Type must be one of the following values ".concat(upperTypes)); -} - -function generateMapUrl() { - var mapUrl = "".concat(BASE_URL_MAP, "center=").concat(this.center, "&zoom=").concat(this.zoom, "&size=").concat(this.sizeMap, "&maptype=").concat(this.mapTypeMap, "&format=").concat(this.formatMap, "&key=").concat(this.googleApiKey, "&scale=").concat(this.scaleMap, "&language=").concat(this.language).concat(this.markersMap).concat(this.pathsMap); - this.$emit('get-url', mapUrl); - return mapUrl; -} -/* eslint-disable arrow-parens */ - - -function generateMarkers() { - var markers = this.markers.map(function (marker) { - var color = "color:".concat(marker.color, "|"); - var size = "size:".concat(marker.size, "|"); - var label = "label:".concat(marker.label, "|"); - var icon = "icon:".concat(marker.icon, "|"); - var latLng = "".concat(marker.lat, ",").concat(marker.lng); - var markerUrl = '&markers='; - - if (marker.color) { - markerUrl += color; - } - - if (marker.size) { - markerUrl += size; - } - - if (marker.label) { - markerUrl += label; - } - - if (marker.icon) { - markerUrl += icon; - } - - if (marker.lat && marker.lng) { - markerUrl += latLng; - } - - return markerUrl; - }); - return markers.join(''); -} -/* eslint-disable arrow-parens */ - - -function generatePaths() { - var paths = this.paths.map(function (path) { - var color = "color:".concat(path.color); - var weight = "weight:".concat(path.weight); - var geodesic = "geodesic:".concat(path.geodesic); - var fillcolor = "fillcolor:".concat(path.fillcolor); - var latLng = path.locations.map(function (location) { - if (location.startLat && location.endLng) { - return "|".concat(location.startLat, ",").concat(location.endLng); - } - - throw Error('The path object must have startLat and endLng properties'); - }); - var joinLatLng = latLng.join(''); - var pathUrl = "&path=".concat(color, "|").concat(fillcolor, "|").concat(geodesic, "|").concat(weight).concat(joinLatLng); - return pathUrl; - }); - return paths.length > 0 ? paths[0] : ''; -} - -function generateScaleMap() { - var allowedScales = ['1', '2', '4']; - - if (allowedScales.indexOf(this.scale) > -1) { - return this.scale; - } - - throw Error("Scale only can have the values ".concat(allowedScales.join(', '))); -} - -function generateSizeMap() { - if (this.size.length > 0) { - var size = this.size; - return "".concat(size[0], "x").concat(size[1]); - } - - throw Error('Size must have 2 values: WIDTH AND HEIGHT'); -} - -/* harmony default export */ var static_mapvue_type_script_lang_js_ = ({ - name: 'static-map', - computed: { - formatMap: generateFormatMap, - mapTypeMap: generateMapType, - mapUrl: generateMapUrl, - markersMap: generateMarkers, - pathsMap: generatePaths, - scaleMap: generateScaleMap, - sizeMap: generateSizeMap - }, - props: { - center: { - type: String, - required: true - }, - format: { - type: String, - default: 'png' - }, - getUrl: { - type: Function - }, - googleApiKey: { - type: String, - required: true - }, - language: { - type: String, - default: 'en' - }, - markers: { - type: Array, - default: function _default() { - return []; - } - }, - paths: { - type: Array, - default: function _default() { - return []; - } - }, - type: { - type: String, - default: 'roadmap' - }, - scale: { - type: String, - default: '1' - }, - size: { - type: Array, - default: function _default() { - return [500, 400]; - } - }, - zoom: { - type: Number, - required: true - } - } -}); -// CONCATENATED MODULE: ./src/components/static-map.vue?vue&type=script&lang=js& - /* harmony default export */ var components_static_mapvue_type_script_lang_js_ = (static_mapvue_type_script_lang_js_); -// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js -/* globals __VUE_SSR_CONTEXT__ */ - -// IMPORTANT: Do NOT use ES2015 features in this file (except for modules). -// This module is a runtime utility for cleaner component module output and will -// be included in the final webpack user bundle. - -function normalizeComponent ( - scriptExports, - render, - staticRenderFns, - functionalTemplate, - injectStyles, - scopeId, - moduleIdentifier, /* server only */ - shadowMode /* vue-cli only */ -) { - // Vue.extend constructor export interop - var options = typeof scriptExports === 'function' - ? scriptExports.options - : scriptExports - - // render functions - if (render) { - options.render = render - options.staticRenderFns = staticRenderFns - options._compiled = true - } - - // functional template - if (functionalTemplate) { - options.functional = true - } - - // scopedId - if (scopeId) { - options._scopeId = 'data-v-' + scopeId - } - - var hook - if (moduleIdentifier) { // server build - hook = function (context) { - // 2.3 injection - context = + ).split(','), j = 0, key; keys.length > j; j++) { + if (has(Base, key = keys[j]) && !has($Number, key)) { + dP($Number, key, gOPD(Base, key)); + } + } + $Number.prototype = proto; + proto.constructor = $Number; + __webpack_require__('2aba')(global, NUMBER, $Number); + } + /** */ }, + + /** */ c69a(module, exports, __webpack_require__) { + module.exports = !__webpack_require__('9e1e') && !__webpack_require__('79e5')(() => Object.defineProperty(__webpack_require__('230e')('div'), 'a', { get() { return 7; } }).a != 7); + /** */ }, + + /** */ ca5a(module, exports) { + let id = 0; + const px = Math.random(); + module.exports = function (key) { + return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); + }; + /** */ }, + + /** */ cadf(module, exports, __webpack_require__) { + const addToUnscopables = __webpack_require__('9c6c'); + const step = __webpack_require__('d53b'); + const Iterators = __webpack_require__('84f2'); + const toIObject = __webpack_require__('6821'); + + // 22.1.3.4 Array.prototype.entries() + // 22.1.3.13 Array.prototype.keys() + // 22.1.3.29 Array.prototype.values() + // 22.1.3.30 Array.prototype[@@iterator]() + module.exports = __webpack_require__('01f9')(Array, 'Array', function (iterated, kind) { + this._t = toIObject(iterated); // target + this._i = 0; // next index + this._k = kind; // kind + // 22.1.5.2.1 %ArrayIteratorPrototype%.next() + }, function () { + const O = this._t; + const kind = this._k; + const index = this._i++; + if (!O || index >= O.length) { + this._t = undefined; + return step(1); + } + if (kind == 'keys') return step(0, index); + if (kind == 'values') return step(0, O[index]); + return step(0, [index, O[index]]); + }, 'values'); + + // argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7) + Iterators.Arguments = Iterators.Array; + + addToUnscopables('keys'); + addToUnscopables('values'); + addToUnscopables('entries'); + /** */ }, + + /** */ cb7c(module, exports, __webpack_require__) { + const isObject = __webpack_require__('d3f4'); + module.exports = function (it) { + if (!isObject(it)) throw TypeError(`${it} is not an object!`); + return it; + }; + /** */ }, + + /** */ ce10(module, exports, __webpack_require__) { + const has = __webpack_require__('69a8'); + const toIObject = __webpack_require__('6821'); + const arrayIndexOf = __webpack_require__('c366')(false); + const IE_PROTO = __webpack_require__('613b')('IE_PROTO'); + + module.exports = function (object, names) { + const O = toIObject(object); + let i = 0; + const result = []; + let key; + for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key); + // Don't enum bug & hidden keys + while (names.length > i) { + if (has(O, key = names[i++])) { + ~arrayIndexOf(result, key) || result.push(key); + } + } + return result; + }; + /** */ }, + + /** */ d3f4(module, exports) { + module.exports = function (it) { + return typeof it === 'object' ? it !== null : typeof it === 'function'; + }; + /** */ }, + + /** */ d53b(module, exports) { + module.exports = function (done, value) { + return { value, done: !!done }; + }; + /** */ }, + + /** */ d8e8(module, exports) { + module.exports = function (it) { + if (typeof it !== 'function') throw TypeError(`${it} is not a function!`); + return it; + }; + /** */ }, + + /** */ e11e(module, exports) { + // IE 8- don't enum bug keys + module.exports = ( + 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' + ).split(','); + /** */ }, + + /** */ fab2(module, exports, __webpack_require__) { + const document = __webpack_require__('7726').document; + module.exports = document && document.documentElement; + /** */ }, + + /** */ fb15(module, __webpack_exports__, __webpack_require__) { + __webpack_require__.r(__webpack_exports__); + + // EXTERNAL MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js + const setPublicPath = __webpack_require__('1eb2'); + + // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0595ba96-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/static-map.vue?vue&type=template&id=5f546ca9& + const render = function () { const _vm = this; const _h = _vm.$createElement; const _c = _vm._self._c || _h; return _c('img', { attrs: { src: _vm.mapUrl } }); }; + const staticRenderFns = []; + + + // CONCATENATED MODULE: ./src/components/static-map.vue?vue&type=template&id=5f546ca9& + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.number.constructor.js + const es6_number_constructor = __webpack_require__('c5f6'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.regexp.to-string.js + const es6_regexp_to_string = __webpack_require__('6b54'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.regexp.replace.js + const es6_regexp_replace = __webpack_require__('a481'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.array.iterator.js + const es6_array_iterator = __webpack_require__('cadf'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.object.keys.js + const es6_object_keys = __webpack_require__('456d'); + + // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom.iterable.js + const web_dom_iterable = __webpack_require__('ac6a'); + + // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/static-map.vue?vue&type=script&lang=js& + + + // + // + // + // + const BASE_URL_MAP = 'https://maps.googleapis.com/maps/api/staticmap?'; + + function generateFormatMap() { + return this.format.toLowerCase(); + } + + function generateMapType() { + const types = ['roadmap', 'satellite', 'hybrid', 'terrain']; + const currenType = this.type; + + if (types.indexOf(currenType) > -1) { + return currenType; + } + + const upperTypes = types.join(', ').toUpperCase(); + throw Error('Type must be one of the following values '.concat(upperTypes)); + } + + function generateMapUrl() { + const mapUrl = ''.concat(BASE_URL_MAP, 'center=').concat(this.center, '&zoom=').concat(this.zoom, '&size=').concat(this.sizeMap, '&maptype=') + .concat(this.mapTypeMap, '&format=') + .concat(this.formatMap, '&key=') + .concat(this.googleApiKey, '&scale=') + .concat(this.scaleMap, '&language=') + .concat(this.language) + .concat(this.markersMap) + .concat(this.pathsMap, '&') + .concat(this.styleMap); + this.$emit('get-url', mapUrl); + return mapUrl; + } + /* eslint-disable arrow-parens */ + + + function generateMarkers() { + const markers = this.markers.map((marker) => { + const color = 'color:'.concat(marker.color, '|'); + const size = 'size:'.concat(marker.size, '|'); + const label = 'label:'.concat(marker.label, '|'); + const icon = 'icon:'.concat(marker.icon, '|'); + const latLng = ''.concat(marker.lat, ',').concat(marker.lng); + let markerUrl = '&markers='; + + if (marker.color) { + markerUrl += color; + } + + if (marker.size) { + markerUrl += size; + } + + if (marker.label) { + markerUrl += label; + } + + if (marker.icon) { + markerUrl += icon; + } + + if (marker.lat && marker.lng) { + markerUrl += latLng; + } + + return markerUrl; + }); + return markers.join(''); + } + /* eslint-disable arrow-parens */ + + + function generatePaths() { + const paths = this.paths.map((path) => { + const color = 'color:'.concat(path.color); + const weight = 'weight:'.concat(path.weight); + const geodesic = 'geodesic:'.concat(path.geodesic); + const fillcolor = 'fillcolor:'.concat(path.fillcolor); + const latLng = path.locations.map((location) => { + if (location.startLat && location.endLng) { + return '|'.concat(location.startLat, ',').concat(location.endLng); + } + + throw Error('The path object must have startLat and endLng properties'); + }); + const joinLatLng = latLng.join(''); + const pathUrl = '&path='.concat(color, '|').concat(fillcolor, '|').concat(geodesic, '|').concat(weight) + .concat(joinLatLng); + return pathUrl; + }); + return paths.length > 0 ? paths[0] : ''; + } + + function generateScaleMap() { + const allowedScales = ['1', '2', '4']; + + if (allowedScales.indexOf(this.scale) > -1) { + return this.scale; + } + + throw Error('Scale only can have the values '.concat(allowedScales.join(', '))); + } + + function generateSizeMap() { + if (this.size.length > 0) { + const size = this.size; + return ''.concat(size[0], 'x').concat(size[1]); + } + + throw Error('Size must have 2 values: WIDTH AND HEIGHT'); + } + + function generateCustomStyles() { + const result = []; + + if (this.customStyle) { + let custom = []; + + try { + custom = JSON.parse(this.customStyle); + } catch (e) { + custom = this.customStyle; + } + + custom.forEach((v) => { + let style = ''; + + if (v.stylers) { + if (v.stylers.length > 0) { + style += ''.concat(Object.prototype.hasOwnProperty.call(v, 'featureType') ? 'feature:'.concat(v.featureType) : 'feature:all', '|'); + style += ''.concat(Object.prototype.hasOwnProperty.call(v, 'elementType') ? 'element:'.concat(v.elementType) : 'element:all', '|'); + v.stylers.forEach((val) => { + const propertyname = Object.keys(val)[0]; + const propertyval = val[propertyname].toString().replace('#', '0x'); + style += ''.concat(propertyname, ':').concat(propertyval, '|'); + }); + } + } + + result.push('style='.concat(encodeURIComponent(style))); + }); + } + + return result.join('&'); + } + + /* harmony default export */ const static_mapvue_type_script_lang_js_ = ({ + name: 'static-map', + computed: { + formatMap: generateFormatMap, + mapTypeMap: generateMapType, + mapUrl: generateMapUrl, + markersMap: generateMarkers, + pathsMap: generatePaths, + scaleMap: generateScaleMap, + sizeMap: generateSizeMap, + styleMap: generateCustomStyles, + }, + props: { + center: { + type: String, + required: true, + }, + format: { + type: String, + default: 'png', + }, + getUrl: { + type: Function, + }, + googleApiKey: { + type: String, + required: true, + }, + language: { + type: String, + default: 'en', + }, + markers: { + type: Array, + default: function _default() { + return []; + }, + }, + paths: { + type: Array, + default: function _default() { + return []; + }, + }, + type: { + type: String, + default: 'roadmap', + }, + scale: { + type: String, + default: '1', + }, + size: { + type: Array, + default: function _default() { + return [500, 400]; + }, + }, + customStyle: { + type: [String, Array], + default: null, + }, + zoom: { + type: Number, + required: true, + }, + }, + }); + // CONCATENATED MODULE: ./src/components/static-map.vue?vue&type=script&lang=js& + /* harmony default export */ const components_static_mapvue_type_script_lang_js_ = (static_mapvue_type_script_lang_js_); + // CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js + /* globals __VUE_SSR_CONTEXT__ */ + + // IMPORTANT: Do NOT use ES2015 features in this file (except for modules). + // This module is a runtime utility for cleaner component module output and will + // be included in the final webpack user bundle. + + function normalizeComponent( + scriptExports, + render, + staticRenderFns, + functionalTemplate, + injectStyles, + scopeId, + moduleIdentifier, /* server only */ + shadowMode, /* vue-cli only */ + ) { + // Vue.extend constructor export interop + const options = typeof scriptExports === 'function' + ? scriptExports.options + : scriptExports; + + // render functions + if (render) { + options.render = render; + options.staticRenderFns = staticRenderFns; + options._compiled = true; + } + + // functional template + if (functionalTemplate) { + options.functional = true; + } + + // scopedId + if (scopeId) { + options._scopeId = `data-v-${scopeId}`; + } + + let hook; + if (moduleIdentifier) { // server build + hook = function (context) { + // 2.3 injection + context = context || // cached call (this.$vnode && this.$vnode.ssrContext) || // stateful - (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional - // 2.2 with runInNewContext: true - if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') { - context = __VUE_SSR_CONTEXT__ - } - // inject component styles - if (injectStyles) { - injectStyles.call(this, context) - } - // register component module identifier for async chunk inferrence - if (context && context._registeredComponents) { - context._registeredComponents.add(moduleIdentifier) - } - } - // used by ssr in case component is cached and beforeCreate - // never gets called - options._ssrRegister = hook - } else if (injectStyles) { - hook = shadowMode - ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) } - : injectStyles - } - - if (hook) { - if (options.functional) { - // for template-only hot-reload because in that case the render fn doesn't - // go through the normalizer - options._injectStyles = hook - // register for functioal component in vue file - var originalRender = options.render - options.render = function renderWithStyleInjection (h, context) { - hook.call(context) - return originalRender(h, context) - } - } else { - // inject component registration as beforeCreate hook - var existing = options.beforeCreate - options.beforeCreate = existing - ? [].concat(existing, hook) - : [hook] - } - } - - return { - exports: scriptExports, - options: options - } -} - -// CONCATENATED MODULE: ./src/components/static-map.vue - - - - - -/* normalize component */ - -var component = normalizeComponent( - components_static_mapvue_type_script_lang_js_, - render, - staticRenderFns, - false, - null, - null, - null - -) - -component.options.__file = "static-map.vue" -/* harmony default export */ var static_map = (component.exports); -// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js - - -/* harmony default export */ var entry_lib = __webpack_exports__["default"] = (static_map); - - - -/***/ }), - -/***/ "fdef": -/***/ (function(module, exports) { - -module.exports = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' + + (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext); // functional + // 2.2 with runInNewContext: true + if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') { + context = __VUE_SSR_CONTEXT__; + } + // inject component styles + if (injectStyles) { + injectStyles.call(this, context); + } + // register component module identifier for async chunk inferrence + if (context && context._registeredComponents) { + context._registeredComponents.add(moduleIdentifier); + } + }; + // used by ssr in case component is cached and beforeCreate + // never gets called + options._ssrRegister = hook; + } else if (injectStyles) { + hook = shadowMode + ? function () { injectStyles.call(this, this.$root.$options.shadowRoot); } + : injectStyles; + } + + if (hook) { + if (options.functional) { + // for template-only hot-reload because in that case the render fn doesn't + // go through the normalizer + options._injectStyles = hook; + // register for functioal component in vue file + const originalRender = options.render; + options.render = function renderWithStyleInjection(h, context) { + hook.call(context); + return originalRender(h, context); + }; + } else { + // inject component registration as beforeCreate hook + const existing = options.beforeCreate; + options.beforeCreate = existing + ? [].concat(existing, hook) + : [hook]; + } + } + + return { + exports: scriptExports, + options, + }; + } + + // CONCATENATED MODULE: ./src/components/static-map.vue + + + /* normalize component */ + + const component = normalizeComponent( + components_static_mapvue_type_script_lang_js_, + render, + staticRenderFns, + false, + null, + null, + null, + + ); + + component.options.__file = 'static-map.vue'; + /* harmony default export */ const static_map = (component.exports); + // CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js + + + /* harmony default export */ const entry_lib = __webpack_exports__.default = (static_map); + /** */ }, + + /** */ fdef(module, exports) { + module.exports = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' + '\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; + /** */ }, - -/***/ }) - -/******/ })["default"]; -}); -//# sourceMappingURL=StaticMap.umd.js.map \ No newline at end of file + /** *** */ })).default)); +// # sourceMappingURL=StaticMap.umd.js.map diff --git a/dist/StaticMap.umd.js.map b/dist/StaticMap.umd.js.map index 15c7fbf..235d203 100644 --- a/dist/StaticMap.umd.js.map +++ b/dist/StaticMap.umd.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack://StaticMap/webpack/universalModuleDefinition","webpack://StaticMap/webpack/bootstrap","webpack://StaticMap/./node_modules/core-js/modules/_object-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopd.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dps.js","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://StaticMap/./node_modules/core-js/modules/_dom-create.js","webpack://StaticMap/./node_modules/core-js/modules/_redefine.js","webpack://StaticMap/./node_modules/core-js/modules/_object-create.js","webpack://StaticMap/./node_modules/core-js/modules/_library.js","webpack://StaticMap/./node_modules/core-js/modules/_cof.js","webpack://StaticMap/./node_modules/core-js/modules/_hide.js","webpack://StaticMap/./node_modules/core-js/modules/_to-integer.js","webpack://StaticMap/./node_modules/core-js/modules/_property-desc.js","webpack://StaticMap/./node_modules/core-js/modules/_object-pie.js","webpack://StaticMap/./node_modules/core-js/modules/_shared.js","webpack://StaticMap/./node_modules/core-js/modules/_export.js","webpack://StaticMap/./node_modules/core-js/modules/_inherit-if-required.js","webpack://StaticMap/./node_modules/core-js/modules/_shared-key.js","webpack://StaticMap/./node_modules/core-js/modules/_iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_to-iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_has.js","webpack://StaticMap/./node_modules/core-js/modules/_to-primitive.js","webpack://StaticMap/./node_modules/core-js/modules/_global.js","webpack://StaticMap/./node_modules/core-js/modules/_to-absolute-index.js","webpack://StaticMap/./node_modules/core-js/modules/_fails.js","webpack://StaticMap/./node_modules/core-js/modules/_core.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dp.js","webpack://StaticMap/./node_modules/core-js/modules/_set-proto.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopn.js","webpack://StaticMap/./node_modules/core-js/modules/_ctx.js","webpack://StaticMap/./node_modules/core-js/modules/_to-length.js","webpack://StaticMap/./node_modules/core-js/modules/_descriptors.js","webpack://StaticMap/./node_modules/core-js/modules/_string-trim.js","webpack://StaticMap/./node_modules/core-js/modules/_defined.js","webpack://StaticMap/./node_modules/core-js/modules/_array-includes.js","webpack://StaticMap/./node_modules/core-js/modules/es6.number.constructor.js","webpack://StaticMap/./node_modules/core-js/modules/_ie8-dom-define.js","webpack://StaticMap/./node_modules/core-js/modules/_uid.js","webpack://StaticMap/./node_modules/core-js/modules/_an-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys-internal.js","webpack://StaticMap/./node_modules/core-js/modules/_is-object.js","webpack://StaticMap/./node_modules/core-js/modules/_a-function.js","webpack://StaticMap/./node_modules/core-js/modules/_enum-bug-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_html.js","webpack://StaticMap/./src/components/static-map.vue?e419","webpack://StaticMap/src/components/static-map.vue","webpack://StaticMap/./src/components/static-map.vue?1ba1","webpack://StaticMap/./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack://StaticMap/./src/components/static-map.vue","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js","webpack://StaticMap/./node_modules/core-js/modules/_string-ws.js"],"names":[],"mappings":"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;AACA;;AACA;AACA;AACA;;AAEA;AACA,mHACA,YADA,sBAEA,eAFA,qBAEA,cAFA,kBAGA,iBAHA,oBAIA,aAJA,uBAIA,aAJA,SAIA,eAJA,SAKA,aALA;AAOA;AACA;AACA;AAEA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA,GAvBA;AAwBA;AACA;AAEA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA,KALA;AAMA;AACA;AACA;AACA,GAdA;AAeA;AACA;;AAEA;AACA;;AACA;AACA;AACA;;AACA;AACA;;AAEA;AACA;AAAA,QACA,IADA,GACA,IADA,CACA,IADA;AAEA;AACA;;AACA;AACA;;AAEA;AACA,oBADA;AAEA;AACA,gCADA;AAEA,+BAFA;AAGA,0BAHA;AAIA,+BAJA;AAKA,2BALA;AAMA,8BANA;AAOA;AAPA,GAFA;AAWA;AACA;AACA,kBADA;AAEA;AAFA,KADA;AAKA;AACA,kBADA;AAEA;AAFA,KALA;AASA;AACA;AADA,KATA;AAYA;AACA,kBADA;AAEA;AAFA,KAZA;AAgBA;AACA,kBADA;AAEA;AAFA,KAhBA;AAoBA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KApBA;AAwBA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KAxBA;AA4BA;AACA,kBADA;AAEA;AAFA,KA5BA;AAgCA;AACA,kBADA;AAEA;AAFA,KAhCA;AAoCA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KApCA;AAwCA;AACA,kBADA;AAEA;AAFA;AAxCA;AAXA,G;;AClG8Q,CAAgB,oHAAG,EAAC,C;;ACAlS;;AAEA;AACA;AACA;;AAEe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,qBAAqB;AACrB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;AC5FyF;AAC3B;AACL;;;AAGzD;AAC0F;AAC1F,gBAAgB,kBAAU;AAC1B,EAAE,6CAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;;AAEA;;AAEA;AACe,gE;;ACnBS;AACA;AACxB,+EAAe,UAAG;AACI;;;;;;;;ACHtB;AACA","file":"StaticMap.umd.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"StaticMap\"] = factory();\n\telse\n\t\troot[\"StaticMap\"] = factory();\n})((typeof self !== 'undefined' ? self : this), function() {\nreturn "," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var i\n if ((i = window.document.currentScript) && (i = i.src.match(/(.+\\/)[^/]+\\.js$/))) {\n __webpack_public_path__ = i[1] // eslint-disable-line\n }\n}\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","module.exports = false;\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","exports.f = {}.propertyIsEnumerable;\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2018 Denis Pushkarev (zloirock.ru)'\n});\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","var core = module.exports = { version: '2.5.7' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var $export = require('./_export');\nvar defined = require('./_defined');\nvar fails = require('./_fails');\nvar spaces = require('./_string-ws');\nvar space = '[' + spaces + ']';\nvar non = '\\u200b\\u0085';\nvar ltrim = RegExp('^' + space + space + '*');\nvar rtrim = RegExp(space + space + '*$');\n\nvar exporter = function (KEY, exec, ALIAS) {\n var exp = {};\n var FORCE = fails(function () {\n return !!spaces[KEY]() || non[KEY]() != non;\n });\n var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY];\n if (ALIAS) exp[ALIAS] = fn;\n $export($export.P + $export.F * FORCE, 'String', exp);\n};\n\n// 1 -> String#trimLeft\n// 2 -> String#trimRight\n// 3 -> String#trim\nvar trim = exporter.trim = function (string, TYPE) {\n string = String(defined(string));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n};\n\nmodule.exports = exporter;\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","'use strict';\nvar global = require('./_global');\nvar has = require('./_has');\nvar cof = require('./_cof');\nvar inheritIfRequired = require('./_inherit-if-required');\nvar toPrimitive = require('./_to-primitive');\nvar fails = require('./_fails');\nvar gOPN = require('./_object-gopn').f;\nvar gOPD = require('./_object-gopd').f;\nvar dP = require('./_object-dp').f;\nvar $trim = require('./_string-trim').trim;\nvar NUMBER = 'Number';\nvar $Number = global[NUMBER];\nvar Base = $Number;\nvar proto = $Number.prototype;\n// Opera ~12 has broken Object#toString\nvar BROKEN_COF = cof(require('./_object-create')(proto)) == NUMBER;\nvar TRIM = 'trim' in String.prototype;\n\n// 7.1.3 ToNumber(argument)\nvar toNumber = function (argument) {\n var it = toPrimitive(argument, false);\n if (typeof it == 'string' && it.length > 2) {\n it = TRIM ? it.trim() : $trim(it, 3);\n var first = it.charCodeAt(0);\n var third, radix, maxCode;\n if (first === 43 || first === 45) {\n third = it.charCodeAt(2);\n if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix\n } else if (first === 48) {\n switch (it.charCodeAt(1)) {\n case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n default: return +it;\n }\n for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) {\n code = digits.charCodeAt(i);\n // parseInt parses a string to a first unavailable symbol\n // but ToNumber should return NaN if a string contains unavailable symbols\n if (code < 48 || code > maxCode) return NaN;\n } return parseInt(digits, radix);\n }\n } return +it;\n};\n\nif (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) {\n $Number = function Number(value) {\n var it = arguments.length < 1 ? 0 : value;\n var that = this;\n return that instanceof $Number\n // check on 1..constructor(foo) case\n && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER)\n ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n };\n for (var keys = require('./_descriptors') ? gOPN(Base) : (\n // ES3:\n 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n // ES6 (in case, if modules with ES6 Number statics required before):\n 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n ).split(','), j = 0, key; keys.length > j; j++) {\n if (has(Base, key = keys[j]) && !has($Number, key)) {\n dP($Number, key, gOPD(Base, key));\n }\n }\n $Number.prototype = proto;\n proto.constructor = $Number;\n require('./_redefine')(global, NUMBER, $Number);\n}\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('img',{attrs:{\"src\":_vm.mapUrl}})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./static-map.vue?vue&type=template&id=89561ac4&\"\nimport script from \"./static-map.vue?vue&type=script&lang=js&\"\nexport * from \"./static-map.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"static-map.vue\"\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","module.exports = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003' +\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack://StaticMap/webpack/universalModuleDefinition","webpack://StaticMap/webpack/bootstrap","webpack://StaticMap/./node_modules/core-js/modules/_iter-define.js","webpack://StaticMap/./node_modules/core-js/modules/_flags.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopd.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dps.js","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://StaticMap/./node_modules/core-js/modules/_fix-re-wks.js","webpack://StaticMap/./node_modules/core-js/modules/_dom-create.js","webpack://StaticMap/./node_modules/core-js/modules/_redefine.js","webpack://StaticMap/./node_modules/core-js/modules/_object-create.js","webpack://StaticMap/./node_modules/core-js/modules/_wks.js","webpack://StaticMap/./node_modules/core-js/modules/_library.js","webpack://StaticMap/./node_modules/core-js/modules/_cof.js","webpack://StaticMap/./node_modules/core-js/modules/_hide.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.flags.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gpo.js","webpack://StaticMap/./node_modules/core-js/modules/_iter-create.js","webpack://StaticMap/./node_modules/core-js/modules/es6.object.keys.js","webpack://StaticMap/./node_modules/core-js/modules/_to-integer.js","webpack://StaticMap/./node_modules/core-js/modules/_property-desc.js","webpack://StaticMap/./node_modules/core-js/modules/_to-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-pie.js","webpack://StaticMap/./node_modules/core-js/modules/_shared.js","webpack://StaticMap/./node_modules/core-js/modules/_export.js","webpack://StaticMap/./node_modules/core-js/modules/_inherit-if-required.js","webpack://StaticMap/./node_modules/core-js/modules/_object-sap.js","webpack://StaticMap/./node_modules/core-js/modules/_shared-key.js","webpack://StaticMap/./node_modules/core-js/modules/_iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_to-iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_has.js","webpack://StaticMap/./node_modules/core-js/modules/_to-primitive.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.to-string.js","webpack://StaticMap/./node_modules/core-js/modules/_global.js","webpack://StaticMap/./node_modules/core-js/modules/_to-absolute-index.js","webpack://StaticMap/./node_modules/core-js/modules/_fails.js","webpack://StaticMap/./node_modules/core-js/modules/_set-to-string-tag.js","webpack://StaticMap/./node_modules/core-js/modules/_core.js","webpack://StaticMap/./node_modules/core-js/modules/_iterators.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dp.js","webpack://StaticMap/./node_modules/core-js/modules/_set-proto.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopn.js","webpack://StaticMap/./node_modules/core-js/modules/_ctx.js","webpack://StaticMap/./node_modules/core-js/modules/_add-to-unscopables.js","webpack://StaticMap/./node_modules/core-js/modules/_to-length.js","webpack://StaticMap/./node_modules/core-js/modules/_descriptors.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.replace.js","webpack://StaticMap/./node_modules/core-js/modules/_string-trim.js","webpack://StaticMap/./node_modules/core-js/modules/web.dom.iterable.js","webpack://StaticMap/./node_modules/core-js/modules/_defined.js","webpack://StaticMap/./node_modules/core-js/modules/_array-includes.js","webpack://StaticMap/./node_modules/core-js/modules/es6.number.constructor.js","webpack://StaticMap/./node_modules/core-js/modules/_ie8-dom-define.js","webpack://StaticMap/./node_modules/core-js/modules/_uid.js","webpack://StaticMap/./node_modules/core-js/modules/es6.array.iterator.js","webpack://StaticMap/./node_modules/core-js/modules/_an-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys-internal.js","webpack://StaticMap/./node_modules/core-js/modules/_is-object.js","webpack://StaticMap/./node_modules/core-js/modules/_iter-step.js","webpack://StaticMap/./node_modules/core-js/modules/_a-function.js","webpack://StaticMap/./node_modules/core-js/modules/_enum-bug-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_html.js","webpack://StaticMap/./src/components/static-map.vue?f1dc","webpack://StaticMap/src/components/static-map.vue","webpack://StaticMap/./src/components/static-map.vue?1ba1","webpack://StaticMap/./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack://StaticMap/./src/components/static-map.vue","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js","webpack://StaticMap/./node_modules/core-js/modules/_string-ws.js"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,O;ACVA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,kDAA0C,gCAAgC;AAC1E;AACA;;AAEA;AACA;AACA;AACA,gEAAwD,kBAAkB;AAC1E;AACA,yDAAiD,cAAc;AAC/D;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iDAAyC,iCAAiC;AAC1E,wHAAgH,mBAAmB,EAAE;AACrI;AACA;;AAEA;AACA;AACA;AACA,mCAA2B,0BAA0B,EAAE;AACvD,yCAAiC,eAAe;AAChD;AACA;AACA;;AAEA;AACA,8DAAsD,+DAA+D;;AAErH;AACA;;;AAGA;AACA;;;;;;;;;AClFa;AACb,cAAc,mBAAO,CAAC,MAAY;AAClC,cAAc,mBAAO,CAAC,MAAW;AACjC,eAAe,mBAAO,CAAC,MAAa;AACpC,WAAW,mBAAO,CAAC,MAAS;AAC5B,gBAAgB,mBAAO,CAAC,MAAc;AACtC,kBAAkB,mBAAO,CAAC,MAAgB;AAC1C,qBAAqB,mBAAO,CAAC,MAAsB;AACnD,qBAAqB,mBAAO,CAAC,MAAe;AAC5C,eAAe,mBAAO,CAAC,MAAQ;AAC/B,8CAA8C;AAC9C;AACA;AACA;;AAEA,8BAA8B,aAAa;;AAE3C;AACA;AACA;AACA;AACA;AACA,yCAAyC,oCAAoC;AAC7E,6CAA6C,oCAAoC;AACjF,KAAK,4BAA4B,oCAAoC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,mBAAmB;AACnC;AACA;AACA,kCAAkC,2BAA2B;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,oDAAoD,wBAAwB;AAC5E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;ACzDA;AACA;AACA;AACA;AACA;;;;;;;;ACJA;AACA;AACA,gBAAgB,mBAAO,CAAC,MAAe;AACvC,eAAe,mBAAO,CAAC,MAAc;AACrC,sBAAsB,mBAAO,CAAC,MAAsB;AACpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK,YAAY,eAAe;AAChC;AACA,KAAK;AACL;AACA;;;;;;;;;ACtBa;AACb,aAAa,mBAAO,CAAC,MAAW;AAChC,UAAU,mBAAO,CAAC,MAAQ;AAC1B,UAAU,mBAAO,CAAC,MAAQ;AAC1B,wBAAwB,mBAAO,CAAC,MAAwB;AACxD,kBAAkB,mBAAO,CAAC,MAAiB;AAC3C,YAAY,mBAAO,CAAC,MAAU;AAC9B,WAAW,mBAAO,CAAC,MAAgB;AACnC,WAAW,mBAAO,CAAC,MAAgB;AACnC,SAAS,mBAAO,CAAC,MAAc;AAC/B,YAAY,mBAAO,CAAC,MAAgB;AACpC;AACA;AACA;AACA;AACA;AACA,qBAAqB,mBAAO,CAAC,MAAkB;AAC/C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oDAAoD;AACpD,KAAK;AACL;AACA,oCAAoC,cAAc,OAAO;AACzD,qCAAqC,cAAc,OAAO;AAC1D;AACA;AACA,oEAAoE,OAAO;AAC3E;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,0BAA0B,EAAE;AACtE;AACA;AACA,kBAAkB,mBAAO,CAAC,MAAgB;AAC1C;AACA;AACA;AACA;AACA;AACA,2BAA2B,iBAAiB;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA,EAAE,mBAAO,CAAC,MAAa;AACvB;;;;;;;;ACpEA,kBAAkB,mBAAO,CAAC,MAAgB,MAAM,mBAAO,CAAC,MAAU;AAClE,+BAA+B,mBAAO,CAAC,MAAe,gBAAgB,mBAAmB,UAAU,EAAE,EAAE;AACvG,CAAC;;;;;;;;ACFD;AACA;AACA;AACA;AACA;;;;;;;;;ACJa;AACb,uBAAuB,mBAAO,CAAC,MAAuB;AACtD,WAAW,mBAAO,CAAC,MAAc;AACjC,gBAAgB,mBAAO,CAAC,MAAc;AACtC,gBAAgB,mBAAO,CAAC,MAAe;;AAEvC;AACA;AACA;AACA;AACA,iBAAiB,mBAAO,CAAC,MAAgB;AACzC,gCAAgC;AAChC,cAAc;AACd,iBAAiB;AACjB;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;;AAEA;AACA;AACA;;;;;;;;ACjCA,eAAe,mBAAO,CAAC,MAAc;AACrC;AACA;AACA;AACA;;;;;;;;ACJA,UAAU,mBAAO,CAAC,MAAQ;AAC1B,gBAAgB,mBAAO,CAAC,MAAe;AACvC,mBAAmB,mBAAO,CAAC,MAAmB;AAC9C,eAAe,mBAAO,CAAC,MAAe;;AAEtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;AChBA;AACA;AACA;;;;;;;;ACFA;AACA,UAAU;AACV;;;;;;;;ACFA;AACA;AACA;AACA;;;;;;;;ACHA;AACA;AACA;AACA;;;;;;;;ACHA,eAAe,mBAAO,CAAC,MAAW;AAClC;;;;;;;;;;;;;;;ACDA,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,OAAO,kBAAkB;AACnI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACIA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AAEA;AACA,mHACA,YADA,sBAEA,eAFA,qBAEA,cAFA,kBAGA,iBAHA,oBAIA,aAJA,uBAIA,aAJA,SAIA,eAJA,SAKA,aALA,cAMA,aANA;AAOA;AACA;AACA;AAEA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA;AACA;;AACA;AACA,GAvBA;AAwBA;AACA;AAEA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA,KALA;AAMA;AACA;AACA;AACA,GAdA;AAeA;AACA;;AAEA;AACA;;AACA;AACA;AACA;;AACA;AACA;;AAEA;AACA;AAAA,QACA,IADA,GACA,IADA,CACA,IADA;AAEA;AACA;;AACA;AACA;;AAEA;AACA;;AACA;AACA;;AACA;AACA;AACA,KAFA,CAEA;AACA;AACA;;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAJA;AAKA;AACA;;AACA;AACA,KAdA;AAeA;;AACA;AACA;;AAEA;AACA,oBADA;AAEA;AACA,gCADA;AAEA,+BAFA;AAGA,0BAHA;AAIA,+BAJA;AAKA,2BALA;AAMA,8BANA;AAOA,4BAPA;AAQA;AARA,GAFA;AAYA;AACA;AACA,kBADA;AAEA;AAFA,KADA;AAKA;AACA,kBADA;AAEA;AAFA,KALA;AASA;AACA;AADA,KATA;AAYA;AACA,kBADA;AAEA;AAFA,KAZA;AAgBA;AACA,kBADA;AAEA;AAFA,KAhBA;AAoBA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KApBA;AAwBA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KAxBA;AA4BA;AACA,kBADA;AAEA;AAFA,KA5BA;AAgCA;AACA,kBADA;AAEA;AAFA,KAhCA;AAoCA;AACA,iBADA;AAEA;AAAA;AAAA;AAFA,KApCA;AAwCA;AACA,2BADA;AAEA;AAFA,KAxCA;AA4CA;AACA,kBADA;AAEA;AAFA;AA5CA;AAZA,G;;AC9H8Q,CAAgB,oHAAG,EAAC,C;;ACAlS;;AAEA;AACA;AACA;;AAEe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,qBAAqB;AACrB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;AC5FyF;AAC3B;AACL;;;AAGzD;AAC0F;AAC1F,gBAAgB,kBAAU;AAC1B,EAAE,6CAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;;AAEA;;AAEA;AACe,gE;;ACnBS;AACA;AACxB,+EAAe,UAAG;AACI;;;;;;;;ACHtB;AACA","file":"StaticMap.umd.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"StaticMap\"] = factory();\n\telse\n\t\troot[\"StaticMap\"] = factory();\n})((typeof self !== 'undefined' ? self : this), function() {\nreturn "," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","'use strict';\n// 21.2.5.3 get RegExp.prototype.flags\nvar anObject = require('./_an-object');\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var i\n if ((i = window.document.currentScript) && (i = i.src.match(/(.+\\/)[^/]+\\.js$/))) {\n __webpack_public_path__ = i[1] // eslint-disable-line\n }\n}\n","'use strict';\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n var fns = exec(defined, SYMBOL, ''[KEY]);\n var strfn = fns[0];\n var rxfn = fns[1];\n if (fails(function () {\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n })) {\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n","module.exports = false;\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","// 21.2.5.3 get RegExp.prototype.flags()\nif (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(RegExp.prototype, 'flags', {\n configurable: true,\n get: require('./_flags')\n});\n","// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","// 19.1.2.14 Object.keys(O)\nvar toObject = require('./_to-object');\nvar $keys = require('./_object-keys');\n\nrequire('./_object-sap')('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n","exports.f = {}.propertyIsEnumerable;\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2018 Denis Pushkarev (zloirock.ru)'\n});\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","// most Object methods by ES6 should accept primitives\nvar $export = require('./_export');\nvar core = require('./_core');\nvar fails = require('./_fails');\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","'use strict';\nrequire('./es6.regexp.flags');\nvar anObject = require('./_an-object');\nvar $flags = require('./_flags');\nvar DESCRIPTORS = require('./_descriptors');\nvar TO_STRING = 'toString';\nvar $toString = /./[TO_STRING];\n\nvar define = function (fn) {\n require('./_redefine')(RegExp.prototype, TO_STRING, fn, true);\n};\n\n// 21.2.5.14 RegExp.prototype.toString()\nif (require('./_fails')(function () { return $toString.call({ source: 'a', flags: 'b' }) != '/a/b'; })) {\n define(function toString() {\n var R = anObject(this);\n return '/'.concat(R.source, '/',\n 'flags' in R ? R.flags : !DESCRIPTORS && R instanceof RegExp ? $flags.call(R) : undefined);\n });\n// FF44- RegExp#toString has a wrong name\n} else if ($toString.name != TO_STRING) {\n define(function toString() {\n return $toString.call(this);\n });\n}\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n","var core = module.exports = { version: '2.5.7' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","module.exports = {};\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","// @@replace logic\nrequire('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) {\n // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)\n return [function replace(searchValue, replaceValue) {\n 'use strict';\n var O = defined(this);\n var fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n return fn !== undefined\n ? fn.call(searchValue, O, replaceValue)\n : $replace.call(String(O), searchValue, replaceValue);\n }, $replace];\n});\n","var $export = require('./_export');\nvar defined = require('./_defined');\nvar fails = require('./_fails');\nvar spaces = require('./_string-ws');\nvar space = '[' + spaces + ']';\nvar non = '\\u200b\\u0085';\nvar ltrim = RegExp('^' + space + space + '*');\nvar rtrim = RegExp(space + space + '*$');\n\nvar exporter = function (KEY, exec, ALIAS) {\n var exp = {};\n var FORCE = fails(function () {\n return !!spaces[KEY]() || non[KEY]() != non;\n });\n var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY];\n if (ALIAS) exp[ALIAS] = fn;\n $export($export.P + $export.F * FORCE, 'String', exp);\n};\n\n// 1 -> String#trimLeft\n// 2 -> String#trimRight\n// 3 -> String#trim\nvar trim = exporter.trim = function (string, TYPE) {\n string = String(defined(string));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n};\n\nmodule.exports = exporter;\n","var $iterators = require('./es6.array.iterator');\nvar getKeys = require('./_object-keys');\nvar redefine = require('./_redefine');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar wks = require('./_wks');\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","'use strict';\nvar global = require('./_global');\nvar has = require('./_has');\nvar cof = require('./_cof');\nvar inheritIfRequired = require('./_inherit-if-required');\nvar toPrimitive = require('./_to-primitive');\nvar fails = require('./_fails');\nvar gOPN = require('./_object-gopn').f;\nvar gOPD = require('./_object-gopd').f;\nvar dP = require('./_object-dp').f;\nvar $trim = require('./_string-trim').trim;\nvar NUMBER = 'Number';\nvar $Number = global[NUMBER];\nvar Base = $Number;\nvar proto = $Number.prototype;\n// Opera ~12 has broken Object#toString\nvar BROKEN_COF = cof(require('./_object-create')(proto)) == NUMBER;\nvar TRIM = 'trim' in String.prototype;\n\n// 7.1.3 ToNumber(argument)\nvar toNumber = function (argument) {\n var it = toPrimitive(argument, false);\n if (typeof it == 'string' && it.length > 2) {\n it = TRIM ? it.trim() : $trim(it, 3);\n var first = it.charCodeAt(0);\n var third, radix, maxCode;\n if (first === 43 || first === 45) {\n third = it.charCodeAt(2);\n if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix\n } else if (first === 48) {\n switch (it.charCodeAt(1)) {\n case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n default: return +it;\n }\n for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) {\n code = digits.charCodeAt(i);\n // parseInt parses a string to a first unavailable symbol\n // but ToNumber should return NaN if a string contains unavailable symbols\n if (code < 48 || code > maxCode) return NaN;\n } return parseInt(digits, radix);\n }\n } return +it;\n};\n\nif (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) {\n $Number = function Number(value) {\n var it = arguments.length < 1 ? 0 : value;\n var that = this;\n return that instanceof $Number\n // check on 1..constructor(foo) case\n && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER)\n ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n };\n for (var keys = require('./_descriptors') ? gOPN(Base) : (\n // ES3:\n 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n // ES6 (in case, if modules with ES6 Number statics required before):\n 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n ).split(','), j = 0, key; keys.length > j; j++) {\n if (has(Base, key = keys[j]) && !has($Number, key)) {\n dP($Number, key, gOPD(Base, key));\n }\n }\n $Number.prototype = proto;\n proto.constructor = $Number;\n require('./_redefine')(global, NUMBER, $Number);\n}\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('img',{attrs:{\"src\":_vm.mapUrl}})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./static-map.vue?vue&type=template&id=5f546ca9&\"\nimport script from \"./static-map.vue?vue&type=script&lang=js&\"\nexport * from \"./static-map.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"static-map.vue\"\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","module.exports = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003' +\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/StaticMap.umd.min.js b/dist/StaticMap.umd.min.js index 6601606..06f223d 100644 --- a/dist/StaticMap.umd.min.js +++ b/dist/StaticMap.umd.min.js @@ -1,2 +1,425 @@ -(function(t,e){"object"===typeof exports&&"object"===typeof module?module.exports=e():"function"===typeof define&&define.amd?define([],e):"object"===typeof exports?exports["StaticMap"]=e():t["StaticMap"]=e()})("undefined"!==typeof self?self:this,function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)n.d(r,o,function(e){return t[e]}.bind(null,o));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s="fb15")}({"0d58":function(t,e,n){var r=n("ce10"),o=n("e11e");t.exports=Object.keys||function(t){return r(t,o)}},"11e9":function(t,e,n){var r=n("52a7"),o=n("4630"),c=n("6821"),i=n("6a99"),a=n("69a8"),u=n("c69a"),f=Object.getOwnPropertyDescriptor;e.f=n("9e1e")?f:function(t,e){if(t=c(t),e=i(e,!0),u)try{return f(t,e)}catch(t){}if(a(t,e))return o(!r.f.call(t,e),t[e])}},1495:function(t,e,n){var r=n("86cc"),o=n("cb7c"),c=n("0d58");t.exports=n("9e1e")?Object.defineProperties:function(t,e){o(t);var n,i=c(e),a=i.length,u=0;while(a>u)r.f(t,n=i[u++],e[n]);return t}},"1eb2":function(t,e,n){var r;"undefined"!==typeof window&&((r=window.document.currentScript)&&(r=r.src.match(/(.+\/)[^/]+\.js$/))&&(n.p=r[1]))},"230e":function(t,e,n){var r=n("d3f4"),o=n("7726").document,c=r(o)&&r(o.createElement);t.exports=function(t){return c?o.createElement(t):{}}},"2aba":function(t,e,n){var r=n("7726"),o=n("32e9"),c=n("69a8"),i=n("ca5a")("src"),a="toString",u=Function[a],f=(""+u).split(a);n("8378").inspectSource=function(t){return u.call(t)},(t.exports=function(t,e,n,a){var u="function"==typeof n;u&&(c(n,"name")||o(n,"name",e)),t[e]!==n&&(u&&(c(n,i)||o(n,i,t[e]?""+t[e]:f.join(String(e)))),t===r?t[e]=n:a?t[e]?t[e]=n:o(t,e,n):(delete t[e],o(t,e,n)))})(Function.prototype,a,function(){return"function"==typeof this&&this[i]||u.call(this)})},"2aeb":function(t,e,n){var r=n("cb7c"),o=n("1495"),c=n("e11e"),i=n("613b")("IE_PROTO"),a=function(){},u="prototype",f=function(){var t,e=n("230e")("iframe"),r=c.length,o="<",i=">";e.style.display="none",n("fab2").appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write(o+"script"+i+"document.F=Object"+o+"/script"+i),t.close(),f=t.F;while(r--)delete f[u][c[r]];return f()};t.exports=Object.create||function(t,e){var n;return null!==t?(a[u]=r(t),n=new a,a[u]=null,n[i]=t):n=f(),void 0===e?n:o(n,e)}},"2d00":function(t,e){t.exports=!1},"2d95":function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},"32e9":function(t,e,n){var r=n("86cc"),o=n("4630");t.exports=n("9e1e")?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},4588:function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},4630:function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},"52a7":function(t,e){e.f={}.propertyIsEnumerable},5537:function(t,e,n){var r=n("8378"),o=n("7726"),c="__core-js_shared__",i=o[c]||(o[c]={});(t.exports=function(t,e){return i[t]||(i[t]=void 0!==e?e:{})})("versions",[]).push({version:r.version,mode:n("2d00")?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},"5ca1":function(t,e,n){var r=n("7726"),o=n("8378"),c=n("32e9"),i=n("2aba"),a=n("9b43"),u="prototype",f=function(t,e,n){var s,p,l,d,h=t&f.F,v=t&f.G,y=t&f.S,b=t&f.P,m=t&f.B,g=v?r:y?r[e]||(r[e]={}):(r[e]||{})[u],_=v?o:o[e]||(o[e]={}),x=_[u]||(_[u]={});for(s in v&&(n=e),n)p=!h&&g&&void 0!==g[s],l=(p?g:n)[s],d=m&&p?a(l,r):b&&"function"==typeof l?a(Function.call,l):l,g&&i(g,s,l,t&f.U),_[s]!=l&&c(_,s,d),b&&x[s]!=l&&(x[s]=l)};r.core=o,f.F=1,f.G=2,f.S=4,f.P=8,f.B=16,f.W=32,f.U=64,f.R=128,t.exports=f},"5dbc":function(t,e,n){var r=n("d3f4"),o=n("8b97").set;t.exports=function(t,e,n){var c,i=e.constructor;return i!==n&&"function"==typeof i&&(c=i.prototype)!==n.prototype&&r(c)&&o&&o(t,c),t}},"613b":function(t,e,n){var r=n("5537")("keys"),o=n("ca5a");t.exports=function(t){return r[t]||(r[t]=o(t))}},"626a":function(t,e,n){var r=n("2d95");t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},6821:function(t,e,n){var r=n("626a"),o=n("be13");t.exports=function(t){return r(o(t))}},"69a8":function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},"6a99":function(t,e,n){var r=n("d3f4");t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},7726:function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},"77f1":function(t,e,n){var r=n("4588"),o=Math.max,c=Math.min;t.exports=function(t,e){return t=r(t),t<0?o(t+e,0):c(t,e)}},"79e5":function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},8378:function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},"86cc":function(t,e,n){var r=n("cb7c"),o=n("c69a"),c=n("6a99"),i=Object.defineProperty;e.f=n("9e1e")?Object.defineProperty:function(t,e,n){if(r(t),e=c(e,!0),r(n),o)try{return i(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},"8b97":function(t,e,n){var r=n("d3f4"),o=n("cb7c"),c=function(t,e){if(o(t),!r(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,r){try{r=n("9b43")(Function.call,n("11e9").f(Object.prototype,"__proto__").set,2),r(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return c(t,n),e?t.__proto__=n:r(t,n),t}}({},!1):void 0),check:c}},9093:function(t,e,n){var r=n("ce10"),o=n("e11e").concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},"9b43":function(t,e,n){var r=n("d8e8");t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},"9def":function(t,e,n){var r=n("4588"),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},"9e1e":function(t,e,n){t.exports=!n("79e5")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},aa77:function(t,e,n){var r=n("5ca1"),o=n("be13"),c=n("79e5"),i=n("fdef"),a="["+i+"]",u="​…",f=RegExp("^"+a+a+"*"),s=RegExp(a+a+"*$"),p=function(t,e,n){var o={},a=c(function(){return!!i[t]()||u[t]()!=u}),f=o[t]=a?e(l):i[t];n&&(o[n]=f),r(r.P+r.F*a,"String",o)},l=p.trim=function(t,e){return t=String(o(t)),1&e&&(t=t.replace(f,"")),2&e&&(t=t.replace(s,"")),t};t.exports=p},be13:function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},c366:function(t,e,n){var r=n("6821"),o=n("9def"),c=n("77f1");t.exports=function(t){return function(e,n,i){var a,u=r(e),f=o(u.length),s=c(i,f);if(t&&n!=n){while(f>s)if(a=u[s++],a!=a)return!0}else for(;f>s;s++)if((t||s in u)&&u[s]===n)return t||s||0;return!t&&-1}}},c5f6:function(t,e,n){"use strict";var r=n("7726"),o=n("69a8"),c=n("2d95"),i=n("5dbc"),a=n("6a99"),u=n("79e5"),f=n("9093").f,s=n("11e9").f,p=n("86cc").f,l=n("aa77").trim,d="Number",h=r[d],v=h,y=h.prototype,b=c(n("2aeb")(y))==d,m="trim"in String.prototype,g=function(t){var e=a(t,!1);if("string"==typeof e&&e.length>2){e=m?e.trim():l(e,3);var n,r,o,c=e.charCodeAt(0);if(43===c||45===c){if(n=e.charCodeAt(2),88===n||120===n)return NaN}else if(48===c){switch(e.charCodeAt(1)){case 66:case 98:r=2,o=49;break;case 79:case 111:r=8,o=55;break;default:return+e}for(var i,u=e.slice(2),f=0,s=u.length;fo)return NaN;return parseInt(u,r)}}return+e};if(!h(" 0o1")||!h("0b1")||h("+0x1")){h=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof h&&(b?u(function(){y.valueOf.call(n)}):c(n)!=d)?i(new v(g(e)),n,h):g(e)};for(var _,x=n("9e1e")?f(v):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),S=0;x.length>S;S++)o(v,_=x[S])&&!o(h,_)&&p(h,_,s(v,_));h.prototype=y,y.constructor=h,n("2aba")(r,d,h)}},c69a:function(t,e,n){t.exports=!n("9e1e")&&!n("79e5")(function(){return 7!=Object.defineProperty(n("230e")("div"),"a",{get:function(){return 7}}).a})},ca5a:function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},cb7c:function(t,e,n){var r=n("d3f4");t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},ce10:function(t,e,n){var r=n("69a8"),o=n("6821"),c=n("c366")(!1),i=n("613b")("IE_PROTO");t.exports=function(t,e){var n,a=o(t),u=0,f=[];for(n in a)n!=i&&r(a,n)&&f.push(n);while(e.length>u)r(a,n=e[u++])&&(~c(f,n)||f.push(n));return f}},d3f4:function(t,e){t.exports=function(t){return"object"===typeof t?null!==t:"function"===typeof t}},d8e8:function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},e11e:function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},fab2:function(t,e,n){var r=n("7726").document;t.exports=r&&r.documentElement},fb15:function(t,e,n){"use strict";n.r(e);n("1eb2");var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("img",{attrs:{src:t.mapUrl}})},o=[],c=(n("c5f6"),"https://maps.googleapis.com/maps/api/staticmap?");function i(){return this.format.toLowerCase()}function a(){var t=["roadmap","satellite","hybrid","terrain"],e=this.type;if(t.indexOf(e)>-1)return e;var n=t.join(", ").toUpperCase();throw Error("Type must be one of the following values ".concat(n))}function u(){var t="".concat(c,"center=").concat(this.center,"&zoom=").concat(this.zoom,"&size=").concat(this.sizeMap,"&maptype=").concat(this.mapTypeMap,"&format=").concat(this.formatMap,"&key=").concat(this.googleApiKey,"&scale=").concat(this.scaleMap,"&language=").concat(this.language).concat(this.markersMap).concat(this.pathsMap);return this.$emit("get-url",t),t}function f(){var t=this.markers.map(function(t){var e="color:".concat(t.color,"|"),n="size:".concat(t.size,"|"),r="label:".concat(t.label,"|"),o="icon:".concat(t.icon,"|"),c="".concat(t.lat,",").concat(t.lng),i="&markers=";return t.color&&(i+=e),t.size&&(i+=n),t.label&&(i+=r),t.icon&&(i+=o),t.lat&&t.lng&&(i+=c),i});return t.join("")}function s(){var t=this.paths.map(function(t){var e="color:".concat(t.color),n="weight:".concat(t.weight),r="geodesic:".concat(t.geodesic),o="fillcolor:".concat(t.fillcolor),c=t.locations.map(function(t){if(t.startLat&&t.endLng)return"|".concat(t.startLat,",").concat(t.endLng);throw Error("The path object must have startLat and endLng properties")}),i=c.join(""),a="&path=".concat(e,"|").concat(o,"|").concat(r,"|").concat(n).concat(i);return a});return t.length>0?t[0]:""}function p(){var t=["1","2","4"];if(t.indexOf(this.scale)>-1)return this.scale;throw Error("Scale only can have the values ".concat(t.join(", ")))}function l(){if(this.size.length>0){var t=this.size;return"".concat(t[0],"x").concat(t[1])}throw Error("Size must have 2 values: WIDTH AND HEIGHT")}var d={name:"static-map",computed:{formatMap:i,mapTypeMap:a,mapUrl:u,markersMap:f,pathsMap:s,scaleMap:p,sizeMap:l},props:{center:{type:String,required:!0},format:{type:String,default:"png"},getUrl:{type:Function},googleApiKey:{type:String,required:!0},language:{type:String,default:"en"},markers:{type:Array,default:function(){return[]}},paths:{type:Array,default:function(){return[]}},type:{type:String,default:"roadmap"},scale:{type:String,default:"1"},size:{type:Array,default:function(){return[500,400]}},zoom:{type:Number,required:!0}}},h=d;function v(t,e,n,r,o,c,i,a){var u,f="function"===typeof t?t.options:t;if(e&&(f.render=e,f.staticRenderFns=n,f._compiled=!0),r&&(f.functional=!0),c&&(f._scopeId="data-v-"+c),i?(u=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(i)},f._ssrRegister=u):o&&(u=a?function(){o.call(this,this.$root.$options.shadowRoot)}:o),u)if(f.functional){f._injectStyles=u;var s=f.render;f.render=function(t,e){return u.call(e),s(t,e)}}else{var p=f.beforeCreate;f.beforeCreate=p?[].concat(p,u):[u]}return{exports:t,options:f}}var y=v(h,r,o,!1,null,null,null);y.options.__file="static-map.vue";var b=y.exports;e["default"]=b},fdef:function(t,e){t.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"}})["default"]}); -//# sourceMappingURL=StaticMap.umd.min.js.map \ No newline at end of file +(function (t, e) { typeof exports === 'object' && typeof module === 'object' ? module.exports = e() : typeof define === 'function' && define.amd ? define([], e) : typeof exports === 'object' ? exports.StaticMap = e() : t.StaticMap = e(); }(typeof self !== 'undefined' ? self : this, () => (function (t) { const e = {}; function n(r) { if (e[r]) return e[r].exports; const o = e[r] = { i: r, l: !1, exports: {} }; return t[r].call(o.exports, o, o.exports, n), o.l = !0, o.exports; } return n.m = t, n.c = e, n.d = function (t, e, r) { n.o(t, e) || Object.defineProperty(t, e, { enumerable: !0, get: r }); }, n.r = function (t) { typeof Symbol !== 'undefined' && Symbol.toStringTag && Object.defineProperty(t, Symbol.toStringTag, { value: 'Module' }), Object.defineProperty(t, '__esModule', { value: !0 }); }, n.t = function (t, e) { if (1 & e && (t = n(t)), 8 & e) return t; if (4 & e && typeof t === 'object' && t && t.__esModule) return t; const r = Object.create(null); if (n.r(r), Object.defineProperty(r, 'default', { enumerable: !0, value: t }), 2 & e && typeof t !== 'string') for (const o in t)n.d(r, o, (e => t[e]).bind(null, o)); return r; }, n.n = function (t) { const e = t && t.__esModule ? function () { return t.default; } : function () { return t; }; return n.d(e, 'a', e), e; }, n.o = function (t, e) { return Object.prototype.hasOwnProperty.call(t, e); }, n.p = '', n(n.s = 'fb15'); }({ + '01f9': function (t, e, n) { + let r = n('2d00'), + o = n('5ca1'), + c = n('2aba'), + i = n('32e9'), + a = n('84f2'), + u = n('41a0'), + f = n('7f20'), + s = n('38fd'), + p = n('2b4c')('iterator'), + l = !([].keys && 'next' in [].keys()), + y = '@@iterator', + d = 'keys', + v = 'values', + h = function () { return this; }; t.exports = function (t, e, n, b, g, m, x) { + u(n, e, b); var S, + _, + O, + j = function (t) { if (!l && t in M) return M[t]; switch (t) { case d: return function () { return new n(this, t); }; case v: return function () { return new n(this, t); }; } return function () { return new n(this, t); }; }, + w = `${e} Iterator`, + E = g == v, + T = !1, + M = t.prototype, + L = M[p] || M[y] || g && M[g], + P = L || j(g), + I = g ? E ? j('entries') : P : void 0, + N = e == 'Array' && M.entries || L; if (N && (O = s(N.call(new t())), O !== Object.prototype && O.next && (f(O, w, !0), r || typeof O[p] === 'function' || i(O, p, h))), E && L && L.name !== v && (T = !0, P = function () { return L.call(this); }), r && !x || !l && !T && M[p] || i(M, p, P), a[e] = P, a[w] = h, g) if (S = { values: E ? P : j(v), keys: m ? P : j(d), entries: I }, x) for (_ in S)_ in M || c(M, _, S[_]); else o(o.P + o.F * (l || T), e, S); return S; + }; + }, + '0bfb': function (t, e, n) { + const r = n('cb7c'); t.exports = function () { + let t = r(this), + e = ''; return t.global && (e += 'g'), t.ignoreCase && (e += 'i'), t.multiline && (e += 'm'), t.unicode && (e += 'u'), t.sticky && (e += 'y'), e; + }; + }, + '0d58': function (t, e, n) { + let r = n('ce10'), + o = n('e11e'); t.exports = Object.keys || function (t) { return r(t, o); }; + }, + '11e9': function (t, e, n) { + let r = n('52a7'), + o = n('4630'), + c = n('6821'), + i = n('6a99'), + a = n('69a8'), + u = n('c69a'), + f = Object.getOwnPropertyDescriptor; e.f = n('9e1e') ? f : function (t, e) { if (t = c(t), e = i(e, !0), u) try { return f(t, e); } catch (t) {} if (a(t, e)) return o(!r.f.call(t, e), t[e]); }; + }, + 1495(t, e, n) { + let r = n('86cc'), + o = n('cb7c'), + c = n('0d58'); t.exports = n('9e1e') ? Object.defineProperties : function (t, e) { + o(t); let n, + i = c(e), + a = i.length, + u = 0; while (a > u)r.f(t, n = i[u++], e[n]); return t; + }; + }, + '1eb2': function (t, e, n) { let r; typeof window !== 'undefined' && ((r = window.document.currentScript) && (r = r.src.match(/(.+\/)[^/]+\.js$/)) && (n.p = r[1])); }, + '214f': function (t, e, n) { + let r = n('32e9'), + o = n('2aba'), + c = n('79e5'), + i = n('be13'), + a = n('2b4c'); t.exports = function (t, e, n) { + let u = a(t), + f = n(i, u, ''[t]), + s = f[0], + p = f[1]; c(() => { const e = {}; return e[u] = function () { return 7; }, ''[t](e) != 7; }) && (o(String.prototype, t, s), r(RegExp.prototype, u, e == 2 ? function (t, e) { return p.call(t, this, e); } : function (t) { return p.call(t, this); })); + }; + }, + '230e': function (t, e, n) { + let r = n('d3f4'), + o = n('7726').document, + c = r(o) && r(o.createElement); t.exports = function (t) { return c ? o.createElement(t) : {}; }; + }, + '2aba': function (t, e, n) { + let r = n('7726'), + o = n('32e9'), + c = n('69a8'), + i = n('ca5a')('src'), + a = 'toString', + u = Function[a], + f = (`${u}`).split(a); n('8378').inspectSource = function (t) { return u.call(t); }, (t.exports = function (t, e, n, a) { const u = typeof n === 'function'; u && (c(n, 'name') || o(n, 'name', e)), t[e] !== n && (u && (c(n, i) || o(n, i, t[e] ? `${t[e]}` : f.join(String(e)))), t === r ? t[e] = n : a ? t[e] ? t[e] = n : o(t, e, n) : (delete t[e], o(t, e, n))); })(Function.prototype, a, function () { return typeof this === 'function' && this[i] || u.call(this); }); + }, + '2aeb': function (t, e, n) { + var r = n('cb7c'), + o = n('1495'), + c = n('e11e'), + i = n('613b')('IE_PROTO'), + a = function () {}, + u = 'prototype', + f = function () { + let t, + e = n('230e')('iframe'), + r = c.length, + o = '<', + i = '>'; e.style.display = 'none', n('fab2').appendChild(e), e.src = 'javascript:', t = e.contentWindow.document, t.open(), t.write(`${o}script${i}document.F=Object${o}/script${i}`), t.close(), f = t.F; while (r--) delete f[u][c[r]]; return f(); + }; t.exports = Object.create || function (t, e) { let n; return t !== null ? (a[u] = r(t), n = new a(), a[u] = null, n[i] = t) : n = f(), void 0 === e ? n : o(n, e); }; + }, + '2b4c': function (t, e, n) { + let r = n('5537')('wks'), + o = n('ca5a'), + c = n('7726').Symbol, + i = typeof c === 'function', + a = t.exports = function (t) { return r[t] || (r[t] = i && c[t] || (i ? c : o)(`Symbol.${t}`)); }; a.store = r; + }, + '2d00': function (t, e) { t.exports = !1; }, + '2d95': function (t, e) { const n = {}.toString; t.exports = function (t) { return n.call(t).slice(8, -1); }; }, + '32e9': function (t, e, n) { + let r = n('86cc'), + o = n('4630'); t.exports = n('9e1e') ? function (t, e, n) { return r.f(t, e, o(1, n)); } : function (t, e, n) { return t[e] = n, t; }; + }, + 3846(t, e, n) { n('9e1e') && /./g.flags != 'g' && n('86cc').f(RegExp.prototype, 'flags', { configurable: !0, get: n('0bfb') }); }, + '38fd': function (t, e, n) { + let r = n('69a8'), + o = n('4bf8'), + c = n('613b')('IE_PROTO'), + i = Object.prototype; t.exports = Object.getPrototypeOf || function (t) { return t = o(t), r(t, c) ? t[c] : typeof t.constructor === 'function' && t instanceof t.constructor ? t.constructor.prototype : t instanceof Object ? i : null; }; + }, + '41a0': function (t, e, n) { + let r = n('2aeb'), + o = n('4630'), + c = n('7f20'), + i = {}; n('32e9')(i, n('2b4c')('iterator'), function () { return this; }), t.exports = function (t, e, n) { t.prototype = r(i, { next: o(1, n) }), c(t, `${e} Iterator`); }; + }, + '456d': function (t, e, n) { + let r = n('4bf8'), + o = n('0d58'); n('5eda')('keys', () => function (t) { return o(r(t)); }); + }, + 4588(t, e) { + let n = Math.ceil, + r = Math.floor; t.exports = function (t) { return isNaN(t = +t) ? 0 : (t > 0 ? r : n)(t); }; + }, + 4630(t, e) { + t.exports = function (t, e) { + return { + enumerable: !(1 & t), configurable: !(2 & t), writable: !(4 & t), value: e, + }; + }; + }, + '4bf8': function (t, e, n) { const r = n('be13'); t.exports = function (t) { return Object(r(t)); }; }, + '52a7': function (t, e) { e.f = {}.propertyIsEnumerable; }, + 5537(t, e, n) { + let r = n('8378'), + o = n('7726'), + c = '__core-js_shared__', + i = o[c] || (o[c] = {}); (t.exports = function (t, e) { return i[t] || (i[t] = void 0 !== e ? e : {}); })('versions', []).push({ version: r.version, mode: n('2d00') ? 'pure' : 'global', copyright: '© 2018 Denis Pushkarev (zloirock.ru)' }); + }, + '5ca1': function (t, e, n) { + var r = n('7726'), + o = n('8378'), + c = n('32e9'), + i = n('2aba'), + a = n('9b43'), + u = 'prototype', + f = function (t, e, n) { + let s, + p, + l, + y, + d = t & f.F, + v = t & f.G, + h = t & f.S, + b = t & f.P, + g = t & f.B, + m = v ? r : h ? r[e] || (r[e] = {}) : (r[e] || {})[u], + x = v ? o : o[e] || (o[e] = {}), + S = x[u] || (x[u] = {}); for (s in v && (n = e), n)p = !d && m && void 0 !== m[s], l = (p ? m : n)[s], y = g && p ? a(l, r) : b && typeof l === 'function' ? a(Function.call, l) : l, m && i(m, s, l, t & f.U), x[s] != l && c(x, s, y), b && S[s] != l && (S[s] = l); + }; r.core = o, f.F = 1, f.G = 2, f.S = 4, f.P = 8, f.B = 16, f.W = 32, f.U = 64, f.R = 128, t.exports = f; + }, + '5dbc': function (t, e, n) { + let r = n('d3f4'), + o = n('8b97').set; t.exports = function (t, e, n) { + let c, + i = e.constructor; return i !== n && typeof i === 'function' && (c = i.prototype) !== n.prototype && r(c) && o && o(t, c), t; + }; + }, + '5eda': function (t, e, n) { + let r = n('5ca1'), + o = n('8378'), + c = n('79e5'); t.exports = function (t, e) { + let n = (o.Object || {})[t] || Object[t], + i = {}; i[t] = e(n), r(r.S + r.F * c(() => { n(1); }), 'Object', i); + }; + }, + '613b': function (t, e, n) { + let r = n('5537')('keys'), + o = n('ca5a'); t.exports = function (t) { return r[t] || (r[t] = o(t)); }; + }, + '626a': function (t, e, n) { const r = n('2d95'); t.exports = Object('z').propertyIsEnumerable(0) ? Object : function (t) { return r(t) == 'String' ? t.split('') : Object(t); }; }, + 6821(t, e, n) { + let r = n('626a'), + o = n('be13'); t.exports = function (t) { return r(o(t)); }; + }, + '69a8': function (t, e) { const n = {}.hasOwnProperty; t.exports = function (t, e) { return n.call(t, e); }; }, + '6a99': function (t, e, n) { + const r = n('d3f4'); t.exports = function (t, e) { + if (!r(t)) return t; let n, + o; if (e && typeof (n = t.toString) === 'function' && !r(o = n.call(t))) return o; if (typeof (n = t.valueOf) === 'function' && !r(o = n.call(t))) return o; if (!e && typeof (n = t.toString) === 'function' && !r(o = n.call(t))) return o; throw TypeError("Can't convert object to primitive value"); + }; + }, + '6b54': function (t, e, n) { + n('3846'); let r = n('cb7c'), + o = n('0bfb'), + c = n('9e1e'), + i = 'toString', + a = /./[i], + u = function (t) { n('2aba')(RegExp.prototype, i, t, !0); }; n('79e5')(() => a.call({ source: 'a', flags: 'b' }) != '/a/b') ? u(function () { const t = r(this); return '/'.concat(t.source, '/', 'flags' in t ? t.flags : !c && t instanceof RegExp ? o.call(t) : void 0); }) : a.name != i && u(function () { return a.call(this); }); + }, + 7726(t, e) { const n = t.exports = typeof window !== 'undefined' && window.Math == Math ? window : typeof self !== 'undefined' && self.Math == Math ? self : Function('return this')(); typeof __g === 'number' && (__g = n); }, + '77f1': function (t, e, n) { + let r = n('4588'), + o = Math.max, + c = Math.min; t.exports = function (t, e) { return t = r(t), t < 0 ? o(t + e, 0) : c(t, e); }; + }, + '79e5': function (t, e) { t.exports = function (t) { try { return !!t(); } catch (t) { return !0; } }; }, + '7f20': function (t, e, n) { + let r = n('86cc').f, + o = n('69a8'), + c = n('2b4c')('toStringTag'); t.exports = function (t, e, n) { t && !o(t = n ? t : t.prototype, c) && r(t, c, { configurable: !0, value: e }); }; + }, + 8378(t, e) { const n = t.exports = { version: '2.5.7' }; typeof __e === 'number' && (__e = n); }, + '84f2': function (t, e) { t.exports = {}; }, + '86cc': function (t, e, n) { + let r = n('cb7c'), + o = n('c69a'), + c = n('6a99'), + i = Object.defineProperty; e.f = n('9e1e') ? Object.defineProperty : function (t, e, n) { if (r(t), e = c(e, !0), r(n), o) try { return i(t, e, n); } catch (t) {} if ('get' in n || 'set' in n) throw TypeError('Accessors not supported!'); return 'value' in n && (t[e] = n.value), t; }; + }, + '8b97': function (t, e, n) { + let r = n('d3f4'), + o = n('cb7c'), + c = function (t, e) { if (o(t), !r(e) && e !== null) throw TypeError(`${e}: can't set as prototype!`); }; t.exports = { set: Object.setPrototypeOf || ('__proto__' in {} ? (function (t, e, r) { try { r = n('9b43')(Function.call, n('11e9').f(Object.prototype, '__proto__').set, 2), r(t, []), e = !(t instanceof Array); } catch (t) { e = !0; } return function (t, n) { return c(t, n), e ? t.__proto__ = n : r(t, n), t; }; }({}, !1)) : void 0), check: c }; + }, + 9093(t, e, n) { + let r = n('ce10'), + o = n('e11e').concat('length', 'prototype'); e.f = Object.getOwnPropertyNames || function (t) { return r(t, o); }; + }, + '9b43': function (t, e, n) { const r = n('d8e8'); t.exports = function (t, e, n) { if (r(t), void 0 === e) return t; switch (n) { case 1: return function (n) { return t.call(e, n); }; case 2: return function (n, r) { return t.call(e, n, r); }; case 3: return function (n, r, o) { return t.call(e, n, r, o); }; } return function () { return t.apply(e, arguments); }; }; }, + '9c6c': function (t, e, n) { + let r = n('2b4c')('unscopables'), + o = Array.prototype; void 0 == o[r] && n('32e9')(o, r, {}), t.exports = function (t) { o[r][t] = !0; }; + }, + '9def': function (t, e, n) { + let r = n('4588'), + o = Math.min; t.exports = function (t) { return t > 0 ? o(r(t), 9007199254740991) : 0; }; + }, + '9e1e': function (t, e, n) { t.exports = !n('79e5')(() => Object.defineProperty({}, 'a', { get() { return 7; } }).a != 7); }, + a481(t, e, n) { + n('214f')('replace', 2, (t, e, n) => [function (r, o) { + let c = t(this), + i = void 0 == r ? void 0 : r[e]; return void 0 !== i ? i.call(r, c, o) : n.call(String(c), r, o); + }, n]); + }, + aa77(t, e, n) { + var r = n('5ca1'), + o = n('be13'), + c = n('79e5'), + i = n('fdef'), + a = `[${i}]`, + u = '​…', + f = RegExp(`^${a}${a}*`), + s = RegExp(`${a + a}*$`), + p = function (t, e, n) { + let o = {}, + a = c(() => !!i[t]() || u[t]() != u), + f = o[t] = a ? e(l) : i[t]; n && (o[n] = f), r(r.P + r.F * a, 'String', o); + }, + l = p.trim = function (t, e) { return t = String(o(t)), 1 & e && (t = t.replace(f, '')), 2 & e && (t = t.replace(s, '')), t; }; t.exports = p; + }, + ac6a(t, e, n) { + for (let r = n('cadf'), o = n('0d58'), c = n('2aba'), i = n('7726'), a = n('32e9'), u = n('84f2'), f = n('2b4c'), s = f('iterator'), p = f('toStringTag'), l = u.Array, y = { + CSSRuleList: !0, CSSStyleDeclaration: !1, CSSValueList: !1, ClientRectList: !1, DOMRectList: !1, DOMStringList: !1, DOMTokenList: !0, DataTransferItemList: !1, FileList: !1, HTMLAllCollection: !1, HTMLCollection: !1, HTMLFormElement: !1, HTMLSelectElement: !1, MediaList: !0, MimeTypeArray: !1, NamedNodeMap: !1, NodeList: !0, PaintRequestList: !1, Plugin: !1, PluginArray: !1, SVGLengthList: !1, SVGNumberList: !1, SVGPathSegList: !1, SVGPointList: !1, SVGStringList: !1, SVGTransformList: !1, SourceBufferList: !1, StyleSheetList: !0, TextTrackCueList: !1, TextTrackList: !1, TouchList: !1, + }, d = o(y), v = 0; v < d.length; v++) { + var h, + b = d[v], + g = y[b], + m = i[b], + x = m && m.prototype; if (x && (x[s] || a(x, s, l), x[p] || a(x, p, b), u[b] = l, g)) for (h in r)x[h] || c(x, h, r[h], !0); + } + }, + be13(t, e) { t.exports = function (t) { if (void 0 == t) throw TypeError(`Can't call method on ${t}`); return t; }; }, + c366(t, e, n) { + let r = n('6821'), + o = n('9def'), + c = n('77f1'); t.exports = function (t) { + return function (e, n, i) { + let a, + u = r(e), + f = o(u.length), + s = c(i, f); if (t && n != n) { while (f > s) if (a = u[s++], a != a) return !0; } else for (;f > s; s++) if ((t || s in u) && u[s] === n) return t || s || 0; return !t && -1; + }; + }; + }, + c5f6(t, e, n) { + let r = n('7726'), + o = n('69a8'), + c = n('2d95'), + i = n('5dbc'), + a = n('6a99'), + u = n('79e5'), + f = n('9093').f, + s = n('11e9').f, + p = n('86cc').f, + l = n('aa77').trim, + y = 'Number', + d = r[y], + v = d, + h = d.prototype, + b = c(n('2aeb')(h)) == y, + g = 'trim' in String.prototype, + m = function (t) { + let e = a(t, !1); if (typeof e === 'string' && e.length > 2) { + e = g ? e.trim() : l(e, 3); let n, + r, + o, + c = e.charCodeAt(0); if (c === 43 || c === 45) { if (n = e.charCodeAt(2), n === 88 || n === 120) return NaN; } else if (c === 48) { switch (e.charCodeAt(1)) { case 66: case 98: r = 2, o = 49; break; case 79: case 111: r = 8, o = 55; break; default: return +e; } for (var i, u = e.slice(2), f = 0, s = u.length; f < s; f++) if (i = u.charCodeAt(f), i < 48 || i > o) return NaN; return parseInt(u, r); } + } return +e; + }; if (!d(' 0o1') || !d('0b1') || d('+0x1')) { + d = function (t) { + let e = arguments.length < 1 ? 0 : t, + n = this; return n instanceof d && (b ? u(() => { h.valueOf.call(n); }) : c(n) != y) ? i(new v(m(e)), n, d) : m(e); + }; for (var x, S = n('9e1e') ? f(v) : 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'.split(','), _ = 0; S.length > _; _++)o(v, x = S[_]) && !o(d, x) && p(d, x, s(v, x)); d.prototype = h, h.constructor = d, n('2aba')(r, y, d); + } + }, + c69a(t, e, n) { t.exports = !n('9e1e') && !n('79e5')(() => Object.defineProperty(n('230e')('div'), 'a', { get() { return 7; } }).a != 7); }, + ca5a(t, e) { + let n = 0, + r = Math.random(); t.exports = function (t) { return 'Symbol('.concat(void 0 === t ? '' : t, ')_', (++n + r).toString(36)); }; + }, + cadf(t, e, n) { + let r = n('9c6c'), + o = n('d53b'), + c = n('84f2'), + i = n('6821'); t.exports = n('01f9')(Array, 'Array', function (t, e) { this._t = i(t), this._i = 0, this._k = e; }, function () { + let t = this._t, + e = this._k, + n = this._i++; return !t || n >= t.length ? (this._t = void 0, o(1)) : o(0, e == 'keys' ? n : e == 'values' ? t[n] : [n, t[n]]); + }, 'values'), c.Arguments = c.Array, r('keys'), r('values'), r('entries'); + }, + cb7c(t, e, n) { const r = n('d3f4'); t.exports = function (t) { if (!r(t)) throw TypeError(`${t} is not an object!`); return t; }; }, + ce10(t, e, n) { + let r = n('69a8'), + o = n('6821'), + c = n('c366')(!1), + i = n('613b')('IE_PROTO'); t.exports = function (t, e) { + let n, + a = o(t), + u = 0, + f = []; for (n in a)n != i && r(a, n) && f.push(n); while (e.length > u)r(a, n = e[u++]) && (~c(f, n) || f.push(n)); return f; + }; + }, + d3f4(t, e) { t.exports = function (t) { return typeof t === 'object' ? t !== null : typeof t === 'function'; }; }, + d53b(t, e) { t.exports = function (t, e) { return { value: e, done: !!t }; }; }, + d8e8(t, e) { t.exports = function (t) { if (typeof t !== 'function') throw TypeError(`${t} is not a function!`); return t; }; }, + e11e(t, e) { t.exports = 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'.split(','); }, + fab2(t, e, n) { const r = n('7726').document; t.exports = r && r.documentElement; }, + fb15(t, e, n) { + n.r(e); n('1eb2'); let r = function () { + let t = this, + e = t.$createElement, + n = t._self._c || e; return n('img', { attrs: { src: t.mapUrl } }); + }, + o = [], + c = (n('c5f6'), n('6b54'), n('a481'), n('cadf'), n('456d'), n('ac6a'), 'https://maps.googleapis.com/maps/api/staticmap?'); function i() { return this.format.toLowerCase(); } function a() { + let t = ['roadmap', 'satellite', 'hybrid', 'terrain'], + e = this.type; if (t.indexOf(e) > -1) return e; const n = t.join(', ').toUpperCase(); throw Error('Type must be one of the following values '.concat(n)); + } function u() { + const t = ''.concat(c, 'center=').concat(this.center, '&zoom=').concat(this.zoom, '&size=').concat(this.sizeMap, '&maptype=') + .concat(this.mapTypeMap, '&format=') + .concat(this.formatMap, '&key=') + .concat(this.googleApiKey, '&scale=') + .concat(this.scaleMap, '&language=') + .concat(this.language) + .concat(this.markersMap) + .concat(this.pathsMap, '&') + .concat(this.styleMap); return this.$emit('get-url', t), t; + } function f() { + const t = this.markers.map((t) => { + let e = 'color:'.concat(t.color, '|'), + n = 'size:'.concat(t.size, '|'), + r = 'label:'.concat(t.label, '|'), + o = 'icon:'.concat(t.icon, '|'), + c = ''.concat(t.lat, ',').concat(t.lng), + i = '&markers='; return t.color && (i += e), t.size && (i += n), t.label && (i += r), t.icon && (i += o), t.lat && t.lng && (i += c), i; + }); return t.join(''); + } function s() { + const t = this.paths.map((t) => { + let e = 'color:'.concat(t.color), + n = 'weight:'.concat(t.weight), + r = 'geodesic:'.concat(t.geodesic), + o = 'fillcolor:'.concat(t.fillcolor), + c = t.locations.map((t) => { if (t.startLat && t.endLng) return '|'.concat(t.startLat, ',').concat(t.endLng); throw Error('The path object must have startLat and endLng properties'); }), + i = c.join(''), + a = '&path='.concat(e, '|').concat(o, '|').concat(r, '|').concat(n) + .concat(i); return a; + }); return t.length > 0 ? t[0] : ''; + } function p() { const t = ['1', '2', '4']; if (t.indexOf(this.scale) > -1) return this.scale; throw Error('Scale only can have the values '.concat(t.join(', '))); } function l() { if (this.size.length > 0) { const t = this.size; return ''.concat(t[0], 'x').concat(t[1]); } throw Error('Size must have 2 values: WIDTH AND HEIGHT'); } function y() { + const t = []; if (this.customStyle) { + let e = []; try { e = JSON.parse(this.customStyle); } catch (t) { e = this.customStyle; }e.forEach((e) => { + let n = ''; e.stylers && e.stylers.length > 0 && (n += ''.concat(Object.prototype.hasOwnProperty.call(e, 'featureType') ? 'feature:'.concat(e.featureType) : 'feature:all', '|'), n += ''.concat(Object.prototype.hasOwnProperty.call(e, 'elementType') ? 'element:'.concat(e.elementType) : 'element:all', '|'), e.stylers.forEach((t) => { + let e = Object.keys(t)[0], + r = t[e].toString().replace('#', '0x'); n += ''.concat(e, ':').concat(r, '|'); + })), t.push('style='.concat(encodeURIComponent(n))); + }); + } return t.join('&'); + } let d = { + name: 'static-map', + computed: { + formatMap: i, mapTypeMap: a, mapUrl: u, markersMap: f, pathsMap: s, scaleMap: p, sizeMap: l, styleMap: y, + }, + props: { + center: { type: String, required: !0 }, format: { type: String, default: 'png' }, getUrl: { type: Function }, googleApiKey: { type: String, required: !0 }, language: { type: String, default: 'en' }, markers: { type: Array, default() { return []; } }, paths: { type: Array, default() { return []; } }, type: { type: String, default: 'roadmap' }, scale: { type: String, default: '1' }, size: { type: Array, default() { return [500, 400]; } }, customStyle: { type: [String, Array], default: null }, zoom: { type: Number, required: !0 }, + }, + }, + v = d; function h(t, e, n, r, o, c, i, a) { + let u, + f = typeof t === 'function' ? t.options : t; if (e && (f.render = e, f.staticRenderFns = n, f._compiled = !0), r && (f.functional = !0), c && (f._scopeId = `data-v-${c}`), i ? (u = function (t) { t = t || this.$vnode && this.$vnode.ssrContext || this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, t || typeof __VUE_SSR_CONTEXT__ === 'undefined' || (t = __VUE_SSR_CONTEXT__), o && o.call(this, t), t && t._registeredComponents && t._registeredComponents.add(i); }, f._ssrRegister = u) : o && (u = a ? function () { o.call(this, this.$root.$options.shadowRoot); } : o), u) if (f.functional) { f._injectStyles = u; const s = f.render; f.render = function (t, e) { return u.call(e), s(t, e); }; } else { const p = f.beforeCreate; f.beforeCreate = p ? [].concat(p, u) : [u]; } return { exports: t, options: f }; + } const b = h(v, r, o, !1, null, null, null); b.options.__file = 'static-map.vue'; const g = b.exports; e.default = g; + }, + fdef(t, e) { t.exports = '\t\n\v\f\r   ᠎              \u2028\u2029\ufeff'; }, +})).default)); +// # sourceMappingURL=StaticMap.umd.min.js.map diff --git a/dist/StaticMap.umd.min.js.map b/dist/StaticMap.umd.min.js.map index ba315db..cb33193 100644 --- a/dist/StaticMap.umd.min.js.map +++ b/dist/StaticMap.umd.min.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack://StaticMap/webpack/universalModuleDefinition","webpack://StaticMap/webpack/bootstrap","webpack://StaticMap/./node_modules/core-js/modules/_object-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopd.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dps.js","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://StaticMap/./node_modules/core-js/modules/_dom-create.js","webpack://StaticMap/./node_modules/core-js/modules/_redefine.js","webpack://StaticMap/./node_modules/core-js/modules/_object-create.js","webpack://StaticMap/./node_modules/core-js/modules/_library.js","webpack://StaticMap/./node_modules/core-js/modules/_cof.js","webpack://StaticMap/./node_modules/core-js/modules/_hide.js","webpack://StaticMap/./node_modules/core-js/modules/_to-integer.js","webpack://StaticMap/./node_modules/core-js/modules/_property-desc.js","webpack://StaticMap/./node_modules/core-js/modules/_object-pie.js","webpack://StaticMap/./node_modules/core-js/modules/_shared.js","webpack://StaticMap/./node_modules/core-js/modules/_export.js","webpack://StaticMap/./node_modules/core-js/modules/_inherit-if-required.js","webpack://StaticMap/./node_modules/core-js/modules/_shared-key.js","webpack://StaticMap/./node_modules/core-js/modules/_iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_to-iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_has.js","webpack://StaticMap/./node_modules/core-js/modules/_to-primitive.js","webpack://StaticMap/./node_modules/core-js/modules/_global.js","webpack://StaticMap/./node_modules/core-js/modules/_to-absolute-index.js","webpack://StaticMap/./node_modules/core-js/modules/_fails.js","webpack://StaticMap/./node_modules/core-js/modules/_core.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dp.js","webpack://StaticMap/./node_modules/core-js/modules/_set-proto.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopn.js","webpack://StaticMap/./node_modules/core-js/modules/_ctx.js","webpack://StaticMap/./node_modules/core-js/modules/_to-length.js","webpack://StaticMap/./node_modules/core-js/modules/_descriptors.js","webpack://StaticMap/./node_modules/core-js/modules/_string-trim.js","webpack://StaticMap/./node_modules/core-js/modules/_defined.js","webpack://StaticMap/./node_modules/core-js/modules/_array-includes.js","webpack://StaticMap/./node_modules/core-js/modules/es6.number.constructor.js","webpack://StaticMap/./node_modules/core-js/modules/_ie8-dom-define.js","webpack://StaticMap/./node_modules/core-js/modules/_uid.js","webpack://StaticMap/./node_modules/core-js/modules/_an-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys-internal.js","webpack://StaticMap/./node_modules/core-js/modules/_is-object.js","webpack://StaticMap/./node_modules/core-js/modules/_a-function.js","webpack://StaticMap/./node_modules/core-js/modules/_enum-bug-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_html.js","webpack://StaticMap/./src/components/static-map.vue?e419","webpack://StaticMap/src/components/static-map.vue","webpack://StaticMap/./src/components/static-map.vue?1ba1","webpack://StaticMap/./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack://StaticMap/./src/components/static-map.vue","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js","webpack://StaticMap/./node_modules/core-js/modules/_string-ws.js"],"names":["root","factory","exports","module","define","amd","self","this","installedModules","__webpack_require__","moduleId","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","$keys","enumBugKeys","keys","O","pIE","createDesc","toIObject","toPrimitive","has","IE8_DOM_DEFINE","gOPD","getOwnPropertyDescriptor","f","P","e","dP","anObject","getKeys","defineProperties","Properties","length","window","document","currentScript","src","match","isObject","is","createElement","it","global","hide","SRC","TO_STRING","$toString","Function","TPL","split","inspectSource","val","safe","isFunction","join","String","dPs","IE_PROTO","Empty","PROTOTYPE","createDict","iframeDocument","iframe","lt","gt","style","display","appendChild","contentWindow","open","write","close","F","result","undefined","toString","slice","ceil","Math","floor","isNaN","bitmap","configurable","writable","propertyIsEnumerable","core","SHARED","store","push","version","copyright","redefine","ctx","$export","type","source","own","out","exp","IS_FORCED","IS_GLOBAL","G","IS_STATIC","S","IS_PROTO","IS_BIND","B","target","expProto","U","W","R","setPrototypeOf","set","that","C","constructor","shared","uid","cof","IObject","defined","fn","valueOf","TypeError","__g","toInteger","max","min","index","exec","__e","Attributes","check","proto","test","buggy","Array","__proto__","hiddenKeys","concat","getOwnPropertyNames","aFunction","a","b","apply","arguments","fails","spaces","space","non","ltrim","RegExp","rtrim","exporter","KEY","ALIAS","FORCE","trim","string","TYPE","replace","toLength","toAbsoluteIndex","IS_INCLUDES","$this","el","fromIndex","inheritIfRequired","gOPN","$trim","NUMBER","$Number","Base","BROKEN_COF","TRIM","toNumber","argument","third","radix","maxCode","first","charCodeAt","NaN","code","digits","parseInt","j","id","px","random","arrayIndexOf","names","documentElement","render","_vm","_h","$createElement","_c","_self","attrs","mapUrl","staticRenderFns","BASE_URL_MAP","generateFormatMap","format","toLowerCase","generateMapType","types","currenType","indexOf","upperTypes","toUpperCase","Error","generateMapUrl","center","zoom","sizeMap","mapTypeMap","formatMap","googleApiKey","scaleMap","language","markersMap","pathsMap","$emit","generateMarkers","markers","map","marker","color","size","label","icon","latLng","lat","lng","markerUrl","generatePaths","paths","path","weight","geodesic","fillcolor","locations","location","startLat","endLng","joinLatLng","pathUrl","generateScaleMap","allowedScales","scale","generateSizeMap","static_mapvue_type_script_lang_js_","computed","props","required","default","getUrl","Number","components_static_mapvue_type_script_lang_js_","normalizeComponent","scriptExports","functionalTemplate","injectStyles","scopeId","moduleIdentifier","shadowMode","hook","options","_compiled","functional","_scopeId","context","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","$root","$options","shadowRoot","_injectStyles","originalRender","h","existing","beforeCreate","component","__file","static_map","__webpack_exports__"],"mappings":"CAAA,SAAAA,EAAAC,GACA,kBAAAC,SAAA,kBAAAC,OACAA,OAAAD,QAAAD,IACA,oBAAAG,eAAAC,IACAD,UAAAH,GACA,kBAAAC,QACAA,QAAA,aAAAD,IAEAD,EAAA,aAAAC,KARA,CASC,qBAAAK,UAAAC,KAAA,WACD,mBCTA,IAAAC,KAGA,SAAAC,EAAAC,GAGA,GAAAF,EAAAE,GACA,OAAAF,EAAAE,GAAAR,QAGA,IAAAC,EAAAK,EAAAE,IACAC,EAAAD,EACAE,GAAA,EACAV,YAUA,OANAW,EAAAH,GAAAI,KAAAX,EAAAD,QAAAC,IAAAD,QAAAO,GAGAN,EAAAS,GAAA,EAGAT,EAAAD,QA0DA,OArDAO,EAAAM,EAAAF,EAGAJ,EAAAO,EAAAR,EAGAC,EAAAQ,EAAA,SAAAf,EAAAgB,EAAAC,GACAV,EAAAW,EAAAlB,EAAAgB,IACAG,OAAAC,eAAApB,EAAAgB,GAA0CK,YAAA,EAAAC,IAAAL,KAK1CV,EAAAgB,EAAA,SAAAvB,GACA,qBAAAwB,eAAAC,aACAN,OAAAC,eAAApB,EAAAwB,OAAAC,aAAwDC,MAAA,WAExDP,OAAAC,eAAApB,EAAA,cAAiD0B,OAAA,KAQjDnB,EAAAoB,EAAA,SAAAD,EAAAE,GAEA,GADA,EAAAA,IAAAF,EAAAnB,EAAAmB,IACA,EAAAE,EAAA,OAAAF,EACA,KAAAE,GAAA,kBAAAF,QAAAG,WAAA,OAAAH,EACA,IAAAI,EAAAX,OAAAY,OAAA,MAGA,GAFAxB,EAAAgB,EAAAO,GACAX,OAAAC,eAAAU,EAAA,WAAyCT,YAAA,EAAAK,UACzC,EAAAE,GAAA,iBAAAF,EAAA,QAAAM,KAAAN,EAAAnB,EAAAQ,EAAAe,EAAAE,EAAA,SAAAA,GAAgH,OAAAN,EAAAM,IAAqBC,KAAA,KAAAD,IACrI,OAAAF,GAIAvB,EAAA2B,EAAA,SAAAjC,GACA,IAAAgB,EAAAhB,KAAA4B,WACA,WAA2B,OAAA5B,EAAA,YAC3B,WAAiC,OAAAA,GAEjC,OADAM,EAAAQ,EAAAE,EAAA,IAAAA,GACAA,GAIAV,EAAAW,EAAA,SAAAiB,EAAAC,GAAsD,OAAAjB,OAAAkB,UAAAC,eAAA1B,KAAAuB,EAAAC,IAGtD7B,EAAAgC,EAAA,GAIAhC,IAAAiC,EAAA,iCCjFA,IAAAC,EAAYlC,EAAQ,QACpBmC,EAAkBnC,EAAQ,QAE1BN,EAAAD,QAAAmB,OAAAwB,MAAA,SAAAC,GACA,OAAAH,EAAAG,EAAAF,4BCLA,IAAAG,EAAUtC,EAAQ,QAClBuC,EAAiBvC,EAAQ,QACzBwC,EAAgBxC,EAAQ,QACxByC,EAAkBzC,EAAQ,QAC1B0C,EAAU1C,EAAQ,QAClB2C,EAAqB3C,EAAQ,QAC7B4C,EAAAhC,OAAAiC,yBAEApD,EAAAqD,EAAY9C,EAAQ,QAAgB4C,EAAA,SAAAP,EAAAU,GAGpC,GAFAV,EAAAG,EAAAH,GACAU,EAAAN,EAAAM,GAAA,GACAJ,EAAA,IACA,OAAAC,EAAAP,EAAAU,GACG,MAAAC,IACH,GAAAN,EAAAL,EAAAU,GAAA,OAAAR,GAAAD,EAAAQ,EAAAzC,KAAAgC,EAAAU,GAAAV,EAAAU,2BCdA,IAAAE,EAASjD,EAAQ,QACjBkD,EAAelD,EAAQ,QACvBmD,EAAcnD,EAAQ,QAEtBN,EAAAD,QAAiBO,EAAQ,QAAgBY,OAAAwC,iBAAA,SAAAf,EAAAgB,GACzCH,EAAAb,GACA,IAGAU,EAHAX,EAAAe,EAAAE,GACAC,EAAAlB,EAAAkB,OACApD,EAAA,EAEA,MAAAoD,EAAApD,EAAA+C,EAAAH,EAAAT,EAAAU,EAAAX,EAAAlC,KAAAmD,EAAAN,IACA,OAAAV,2BCRA,IAAAnC,EADA,qBAAAqD,UAEArD,EAAAqD,OAAAC,SAAAC,iBAAAvD,IAAAwD,IAAAC,MAAA,uBACI3D,EAAAgC,EAAuB9B,EAAA,6BCL3B,IAAA0D,EAAe5D,EAAQ,QACvBwD,EAAexD,EAAQ,QAAWwD,SAElCK,EAAAD,EAAAJ,IAAAI,EAAAJ,EAAAM,eACApE,EAAAD,QAAA,SAAAsE,GACA,OAAAF,EAAAL,EAAAM,cAAAC,+BCLA,IAAAC,EAAahE,EAAQ,QACrBiE,EAAWjE,EAAQ,QACnB0C,EAAU1C,EAAQ,QAClBkE,EAAUlE,EAAQ,OAARA,CAAgB,OAC1BmE,EAAA,WACAC,EAAAC,SAAAF,GACAG,GAAA,GAAAF,GAAAG,MAAAJ,GAEAnE,EAAQ,QAASwE,cAAA,SAAAT,GACjB,OAAAK,EAAA/D,KAAA0D,KAGArE,EAAAD,QAAA,SAAA4C,EAAAZ,EAAAgD,EAAAC,GACA,IAAAC,EAAA,mBAAAF,EACAE,IAAAjC,EAAA+B,EAAA,SAAAR,EAAAQ,EAAA,OAAAhD,IACAY,EAAAZ,KAAAgD,IACAE,IAAAjC,EAAA+B,EAAAP,IAAAD,EAAAQ,EAAAP,EAAA7B,EAAAZ,GAAA,GAAAY,EAAAZ,GAAA6C,EAAAM,KAAAC,OAAApD,MACAY,IAAA2B,EACA3B,EAAAZ,GAAAgD,EACGC,EAGArC,EAAAZ,GACHY,EAAAZ,GAAAgD,EAEAR,EAAA5B,EAAAZ,EAAAgD,WALApC,EAAAZ,GACAwC,EAAA5B,EAAAZ,EAAAgD,OAOCJ,SAAAvC,UAAAqC,EAAA,WACD,yBAAArE,WAAAoE,IAAAE,EAAA/D,KAAAP,gCC5BA,IAAAoD,EAAelD,EAAQ,QACvB8E,EAAU9E,EAAQ,QAClBmC,EAAkBnC,EAAQ,QAC1B+E,EAAe/E,EAAQ,OAARA,CAAuB,YACtCgF,EAAA,aACAC,EAAA,YAGAC,EAAA,WAEA,IAIAC,EAJAC,EAAepF,EAAQ,OAARA,CAAuB,UACtCE,EAAAiC,EAAAmB,OACA+B,EAAA,IACAC,EAAA,IAEAF,EAAAG,MAAAC,QAAA,OACExF,EAAQ,QAASyF,YAAAL,GACnBA,EAAA1B,IAAA,cAGAyB,EAAAC,EAAAM,cAAAlC,SACA2B,EAAAQ,OACAR,EAAAS,MAAAP,EAAA,SAAAC,EAAA,oBAAAD,EAAA,UAAAC,GACAH,EAAAU,QACAX,EAAAC,EAAAW,EACA,MAAA5F,WAAAgF,EAAAD,GAAA9C,EAAAjC,IACA,OAAAgF,KAGAxF,EAAAD,QAAAmB,OAAAY,QAAA,SAAAa,EAAAgB,GACA,IAAA0C,EAQA,OAPA,OAAA1D,GACA2C,EAAAC,GAAA/B,EAAAb,GACA0D,EAAA,IAAAf,EACAA,EAAAC,GAAA,KAEAc,EAAAhB,GAAA1C,GACG0D,EAAAb,SACHc,IAAA3C,EAAA0C,EAAAjB,EAAAiB,EAAA1C,0BCvCA3D,EAAAD,SAAA,wBCAA,IAAAwG,KAAiBA,SAEjBvG,EAAAD,QAAA,SAAAsE,GACA,OAAAkC,EAAA5F,KAAA0D,GAAAmC,MAAA,+BCHA,IAAAjD,EAASjD,EAAQ,QACjBuC,EAAiBvC,EAAQ,QACzBN,EAAAD,QAAiBO,EAAQ,QAAgB,SAAA4B,EAAAH,EAAAN,GACzC,OAAA8B,EAAAH,EAAAlB,EAAAH,EAAAc,EAAA,EAAApB,KACC,SAAAS,EAAAH,EAAAN,GAED,OADAS,EAAAH,GAAAN,EACAS,uBCLA,IAAAuE,EAAAC,KAAAD,KACAE,EAAAD,KAAAC,MACA3G,EAAAD,QAAA,SAAAsE,GACA,OAAAuC,MAAAvC,MAAA,GAAAA,EAAA,EAAAsC,EAAAF,GAAApC,wBCJArE,EAAAD,QAAA,SAAA8G,EAAApF,GACA,OACAL,aAAA,EAAAyF,GACAC,eAAA,EAAAD,GACAE,WAAA,EAAAF,GACApF,gCCLA1B,EAAAqD,KAAc4D,2CCAd,IAAAC,EAAW3G,EAAQ,QACnBgE,EAAahE,EAAQ,QACrB4G,EAAA,qBACAC,EAAA7C,EAAA4C,KAAA5C,EAAA4C,QAEAlH,EAAAD,QAAA,SAAAgC,EAAAN,GACA,OAAA0F,EAAApF,KAAAoF,EAAApF,QAAAuE,IAAA7E,UACC,eAAA2F,MACDC,QAAAJ,EAAAI,QACA1F,KAAQrB,EAAQ,QAAY,gBAC5BgH,UAAA,iECVA,IAAAhD,EAAahE,EAAQ,QACrB2G,EAAW3G,EAAQ,QACnBiE,EAAWjE,EAAQ,QACnBiH,EAAejH,EAAQ,QACvBkH,EAAUlH,EAAQ,QAClBiF,EAAA,YAEAkC,EAAA,SAAAC,EAAA3G,EAAA4G,GACA,IAQA5F,EAAA6F,EAAAC,EAAAC,EARAC,EAAAL,EAAAD,EAAArB,EACA4B,EAAAN,EAAAD,EAAAQ,EACAC,EAAAR,EAAAD,EAAAU,EACAC,EAAAV,EAAAD,EAAApE,EACAgF,EAAAX,EAAAD,EAAAa,EACAC,EAAAP,EAAA1D,EAAA4D,EAAA5D,EAAAvD,KAAAuD,EAAAvD,QAAkFuD,EAAAvD,QAAuBwE,GACzGxF,EAAAiI,EAAAf,IAAAlG,KAAAkG,EAAAlG,OACAyH,EAAAzI,EAAAwF,KAAAxF,EAAAwF,OAGA,IAAAxD,KADAiG,IAAAL,EAAA5G,GACA4G,EAEAC,GAAAG,GAAAQ,QAAAjC,IAAAiC,EAAAxG,GAEA8F,GAAAD,EAAAW,EAAAZ,GAAA5F,GAEA+F,EAAAO,GAAAT,EAAAJ,EAAAK,EAAAvD,GAAA8D,GAAA,mBAAAP,EAAAL,EAAA7C,SAAAhE,KAAAkH,KAEAU,GAAAhB,EAAAgB,EAAAxG,EAAA8F,EAAAH,EAAAD,EAAAgB,GAEA1I,EAAAgC,IAAA8F,GAAAtD,EAAAxE,EAAAgC,EAAA+F,GACAM,GAAAI,EAAAzG,IAAA8F,IAAAW,EAAAzG,GAAA8F,IAGAvD,EAAA2C,OAEAQ,EAAArB,EAAA,EACAqB,EAAAQ,EAAA,EACAR,EAAAU,EAAA,EACAV,EAAApE,EAAA,EACAoE,EAAAa,EAAA,GACAb,EAAAiB,EAAA,GACAjB,EAAAgB,EAAA,GACAhB,EAAAkB,EAAA,IACA3I,EAAAD,QAAA0H,0BC1CA,IAAAvD,EAAe5D,EAAQ,QACvBsI,EAAqBtI,EAAQ,QAAcuI,IAC3C7I,EAAAD,QAAA,SAAA+I,EAAAP,EAAAQ,GACA,IACA1F,EADA8E,EAAAI,EAAAS,YAIG,OAFHb,IAAAY,GAAA,mBAAAZ,IAAA9E,EAAA8E,EAAA/F,aAAA2G,EAAA3G,WAAA8B,EAAAb,IAAAuF,GACAA,EAAAE,EAAAzF,GACGyF,2BCPH,IAAAG,EAAa3I,EAAQ,OAARA,CAAmB,QAChC4I,EAAU5I,EAAQ,QAClBN,EAAAD,QAAA,SAAAgC,GACA,OAAAkH,EAAAlH,KAAAkH,EAAAlH,GAAAmH,EAAAnH,6BCFA,IAAAoH,EAAU7I,EAAQ,QAElBN,EAAAD,QAAAmB,OAAA,KAAA8F,qBAAA,GAAA9F,OAAA,SAAAmD,GACA,gBAAA8E,EAAA9E,KAAAQ,MAAA,IAAA3D,OAAAmD,0BCHA,IAAA+E,EAAc9I,EAAQ,QACtB+I,EAAc/I,EAAQ,QACtBN,EAAAD,QAAA,SAAAsE,GACA,OAAA+E,EAAAC,EAAAhF,2BCJA,IAAAhC,KAAuBA,eACvBrC,EAAAD,QAAA,SAAAsE,EAAAtC,GACA,OAAAM,EAAA1B,KAAA0D,EAAAtC,4BCDA,IAAAmC,EAAe5D,EAAQ,QAGvBN,EAAAD,QAAA,SAAAsE,EAAA8D,GACA,IAAAjE,EAAAG,GAAA,OAAAA,EACA,IAAAiF,EAAAvE,EACA,GAAAoD,GAAA,mBAAAmB,EAAAjF,EAAAkC,YAAArC,EAAAa,EAAAuE,EAAA3I,KAAA0D,IAAA,OAAAU,EACA,sBAAAuE,EAAAjF,EAAAkF,WAAArF,EAAAa,EAAAuE,EAAA3I,KAAA0D,IAAA,OAAAU,EACA,IAAAoD,GAAA,mBAAAmB,EAAAjF,EAAAkC,YAAArC,EAAAa,EAAAuE,EAAA3I,KAAA0D,IAAA,OAAAU,EACA,MAAAyE,UAAA,gECTA,IAAAlF,EAAAtE,EAAAD,QAAA,oBAAA8D,eAAA6C,WACA7C,OAAA,oBAAA1D,WAAAuG,WAAAvG,KAEAwE,SAAA,cAAAA,GACA,iBAAA8E,UAAAnF,2BCLA,IAAAoF,EAAgBpJ,EAAQ,QACxBqJ,EAAAjD,KAAAiD,IACAC,EAAAlD,KAAAkD,IACA5J,EAAAD,QAAA,SAAA8J,EAAAjG,GAEA,OADAiG,EAAAH,EAAAG,GACAA,EAAA,EAAAF,EAAAE,EAAAjG,EAAA,GAAAgG,EAAAC,EAAAjG,0BCLA5D,EAAAD,QAAA,SAAA+J,GACA,IACA,QAAAA,IACG,MAAAxG,GACH,+BCJA,IAAA2D,EAAAjH,EAAAD,SAA6BsH,QAAA,SAC7B,iBAAA0C,UAAA9C,2BCDA,IAAAzD,EAAelD,EAAQ,QACvB2C,EAAqB3C,EAAQ,QAC7ByC,EAAkBzC,EAAQ,QAC1BiD,EAAArC,OAAAC,eAEApB,EAAAqD,EAAY9C,EAAQ,QAAgBY,OAAAC,eAAA,SAAAwB,EAAAU,EAAA2G,GAIpC,GAHAxG,EAAAb,GACAU,EAAAN,EAAAM,GAAA,GACAG,EAAAwG,GACA/G,EAAA,IACA,OAAAM,EAAAZ,EAAAU,EAAA2G,GACG,MAAA1G,IACH,WAAA0G,GAAA,QAAAA,EAAA,MAAAR,UAAA,4BAEA,MADA,UAAAQ,IAAArH,EAAAU,GAAA2G,EAAAvI,OACAkB,2BCZA,IAAAuB,EAAe5D,EAAQ,QACvBkD,EAAelD,EAAQ,QACvB2J,EAAA,SAAAtH,EAAAuH,GAEA,GADA1G,EAAAb,IACAuB,EAAAgG,IAAA,OAAAA,EAAA,MAAAV,UAAAU,EAAA,8BAEAlK,EAAAD,SACA8I,IAAA3H,OAAA0H,iBAAA,gBACA,SAAAuB,EAAAC,EAAAvB,GACA,IACAA,EAAcvI,EAAQ,OAARA,CAAgBqE,SAAAhE,KAAiBL,EAAQ,QAAgB8C,EAAAlC,OAAAkB,UAAA,aAAAyG,IAAA,GACvEA,EAAAsB,MACAC,IAAAD,aAAAE,OACO,MAAA/G,GAAY8G,GAAA,EACnB,gBAAAzH,EAAAuH,GAIA,OAHAD,EAAAtH,EAAAuH,GACAE,EAAAzH,EAAA2H,UAAAJ,EACArB,EAAAlG,EAAAuH,GACAvH,GAVA,KAYQ,QAAA2D,GACR2D,+BCtBA,IAAAzH,EAAYlC,EAAQ,QACpBiK,EAAiBjK,EAAQ,QAAkBkK,OAAA,sBAE3CzK,EAAAqD,EAAAlC,OAAAuJ,qBAAA,SAAA9H,GACA,OAAAH,EAAAG,EAAA4H,4BCJA,IAAAG,EAAgBpK,EAAQ,QACxBN,EAAAD,QAAA,SAAAuJ,EAAAR,EAAAlF,GAEA,GADA8G,EAAApB,QACAhD,IAAAwC,EAAA,OAAAQ,EACA,OAAA1F,GACA,uBAAA+G,GACA,OAAArB,EAAA3I,KAAAmI,EAAA6B,IAEA,uBAAAA,EAAAC,GACA,OAAAtB,EAAA3I,KAAAmI,EAAA6B,EAAAC,IAEA,uBAAAD,EAAAC,EAAA/J,GACA,OAAAyI,EAAA3I,KAAAmI,EAAA6B,EAAAC,EAAA/J,IAGA,kBACA,OAAAyI,EAAAuB,MAAA/B,EAAAgC,qCChBA,IAAApB,EAAgBpJ,EAAQ,QACxBsJ,EAAAlD,KAAAkD,IACA5J,EAAAD,QAAA,SAAAsE,GACA,OAAAA,EAAA,EAAAuF,EAAAF,EAAArF,GAAA,6CCHArE,EAAAD,SAAkBO,EAAQ,OAARA,CAAkB,WACpC,OAA0E,GAA1EY,OAAAC,kBAAiC,KAAQE,IAAA,WAAmB,YAAcsJ,0BCF1E,IAAAlD,EAAcnH,EAAQ,QACtB+I,EAAc/I,EAAQ,QACtByK,EAAYzK,EAAQ,QACpB0K,EAAa1K,EAAQ,QACrB2K,EAAA,IAAAD,EAAA,IACAE,EAAA,KACAC,EAAAC,OAAA,IAAAH,IAAA,KACAI,EAAAD,OAAAH,IAAA,MAEAK,EAAA,SAAAC,EAAAzB,EAAA0B,GACA,IAAA1D,KACA2D,EAAAV,EAAA,WACA,QAAAC,EAAAO,MAAAL,EAAAK,MAAAL,IAEA5B,EAAAxB,EAAAyD,GAAAE,EAAA3B,EAAA4B,GAAAV,EAAAO,GACAC,IAAA1D,EAAA0D,GAAAlC,GACA7B,IAAApE,EAAAoE,EAAArB,EAAAqF,EAAA,SAAA3D,IAMA4D,EAAAJ,EAAAI,KAAA,SAAAC,EAAAC,GAIA,OAHAD,EAAAxG,OAAAkE,EAAAsC,IACA,EAAAC,IAAAD,IAAAE,QAAAV,EAAA,KACA,EAAAS,IAAAD,IAAAE,QAAAR,EAAA,KACAM,GAGA3L,EAAAD,QAAAuL,sBC5BAtL,EAAAD,QAAA,SAAAsE,GACA,QAAAiC,GAAAjC,EAAA,MAAAmF,UAAA,yBAAAnF,GACA,OAAAA,yBCDA,IAAAvB,EAAgBxC,EAAQ,QACxBwL,EAAexL,EAAQ,QACvByL,EAAsBzL,EAAQ,QAC9BN,EAAAD,QAAA,SAAAiM,GACA,gBAAAC,EAAAC,EAAAC,GACA,IAGA1K,EAHAkB,EAAAG,EAAAmJ,GACArI,EAAAkI,EAAAnJ,EAAAiB,QACAiG,EAAAkC,EAAAI,EAAAvI,GAIA,GAAAoI,GAAAE,MAAA,MAAAtI,EAAAiG,EAGA,GAFApI,EAAAkB,EAAAkH,KAEApI,KAAA,cAEK,KAAYmC,EAAAiG,EAAeA,IAAA,IAAAmC,GAAAnC,KAAAlH,IAChCA,EAAAkH,KAAAqC,EAAA,OAAAF,GAAAnC,GAAA,EACK,OAAAmC,IAAA,uCCnBL,IAAA1H,EAAahE,EAAQ,QACrB0C,EAAU1C,EAAQ,QAClB6I,EAAU7I,EAAQ,QAClB8L,EAAwB9L,EAAQ,QAChCyC,EAAkBzC,EAAQ,QAC1ByK,EAAYzK,EAAQ,QACpB+L,EAAW/L,EAAQ,QAAgB8C,EACnCF,EAAW5C,EAAQ,QAAgB8C,EACnCG,EAASjD,EAAQ,QAAc8C,EAC/BkJ,EAAYhM,EAAQ,QAAgBoL,KACpCa,EAAA,SACAC,EAAAlI,EAAAiI,GACAE,EAAAD,EACAtC,EAAAsC,EAAApK,UAEAsK,EAAAvD,EAAqB7I,EAAQ,OAARA,CAA0B4J,KAAAqC,EAC/CI,EAAA,SAAAxH,OAAA/C,UAGAwK,EAAA,SAAAC,GACA,IAAAxI,EAAAtB,EAAA8J,GAAA,GACA,oBAAAxI,KAAAT,OAAA,GACAS,EAAAsI,EAAAtI,EAAAqH,OAAAY,EAAAjI,EAAA,GACA,IACAyI,EAAAC,EAAAC,EADAC,EAAA5I,EAAA6I,WAAA,GAEA,QAAAD,GAAA,KAAAA,GAEA,GADAH,EAAAzI,EAAA6I,WAAA,GACA,KAAAJ,GAAA,MAAAA,EAAA,OAAAK,SACK,QAAAF,EAAA,CACL,OAAA5I,EAAA6I,WAAA,IACA,gBAAAH,EAAA,EAAoCC,EAAA,GAAc,MAClD,iBAAAD,EAAA,EAAqCC,EAAA,GAAc,MACnD,eAAA3I,EAEA,QAAA+I,EAAAC,EAAAhJ,EAAAmC,MAAA,GAAAhG,EAAA,EAAAC,EAAA4M,EAAAzJ,OAAoEpD,EAAAC,EAAOD,IAI3E,GAHA4M,EAAAC,EAAAH,WAAA1M,GAGA4M,EAAA,IAAAA,EAAAJ,EAAA,OAAAG,IACO,OAAAG,SAAAD,EAAAN,IAEJ,OAAA1I,GAGH,IAAAmI,EAAA,UAAAA,EAAA,QAAAA,EAAA,SACAA,EAAA,SAAA/K,GACA,IAAA4C,EAAAyG,UAAAlH,OAAA,IAAAnC,EACAqH,EAAA1I,KACA,OAAA0I,aAAA0D,IAEAE,EAAA3B,EAAA,WAA0Cb,EAAAX,QAAA5I,KAAAmI,KAA4BK,EAAAL,IAAAyD,GACtEH,EAAA,IAAAK,EAAAG,EAAAvI,IAAAyE,EAAA0D,GAAAI,EAAAvI,IAEA,QAMAtC,EANAW,EAAkBpC,EAAQ,QAAgB+L,EAAAI,GAAA,6KAM1C5H,MAAA,KAAA0I,EAAA,EAA2B7K,EAAAkB,OAAA2J,EAAiBA,IAC5CvK,EAAAyJ,EAAA1K,EAAAW,EAAA6K,MAAAvK,EAAAwJ,EAAAzK,IACAwB,EAAAiJ,EAAAzK,EAAAmB,EAAAuJ,EAAA1K,IAGAyK,EAAApK,UAAA8H,EACAA,EAAAlB,YAAAwD,EACElM,EAAQ,OAARA,CAAqBgE,EAAAiI,EAAAC,0BCnEvBxM,EAAAD,SAAkBO,EAAQ,UAAsBA,EAAQ,OAARA,CAAkB,WAClE,OAAuG,GAAvGY,OAAAC,eAA+Bb,EAAQ,OAARA,CAAuB,YAAgBe,IAAA,WAAmB,YAAcsJ,wBCDvG,IAAA6C,EAAA,EACAC,EAAA/G,KAAAgH,SACA1N,EAAAD,QAAA,SAAAgC,GACA,gBAAAyI,YAAAlE,IAAAvE,EAAA,GAAAA,EAAA,QAAAyL,EAAAC,GAAAlH,SAAA,4BCHA,IAAArC,EAAe5D,EAAQ,QACvBN,EAAAD,QAAA,SAAAsE,GACA,IAAAH,EAAAG,GAAA,MAAAmF,UAAAnF,EAAA,sBACA,OAAAA,yBCHA,IAAArB,EAAU1C,EAAQ,QAClBwC,EAAgBxC,EAAQ,QACxBqN,EAAmBrN,EAAQ,OAARA,EAA2B,GAC9C+E,EAAe/E,EAAQ,OAARA,CAAuB,YAEtCN,EAAAD,QAAA,SAAAmC,EAAA0L,GACA,IAGA7L,EAHAY,EAAAG,EAAAZ,GACA1B,EAAA,EACA6F,KAEA,IAAAtE,KAAAY,EAAAZ,GAAAsD,GAAArC,EAAAL,EAAAZ,IAAAsE,EAAAe,KAAArF,GAEA,MAAA6L,EAAAhK,OAAApD,EAAAwC,EAAAL,EAAAZ,EAAA6L,EAAApN,SACAmN,EAAAtH,EAAAtE,IAAAsE,EAAAe,KAAArF,IAEA,OAAAsE,uBCfArG,EAAAD,QAAA,SAAAsE,GACA,wBAAAA,EAAA,OAAAA,EAAA,oBAAAA,uBCDArE,EAAAD,QAAA,SAAAsE,GACA,sBAAAA,EAAA,MAAAmF,UAAAnF,EAAA,uBACA,OAAAA,uBCDArE,EAAAD,QAAA,gGAEA8E,MAAA,2BCHA,IAAAf,EAAexD,EAAQ,QAAWwD,SAClC9D,EAAAD,QAAA+D,KAAA+J,wECDAC,EAAA,WAA0B,IAAAC,EAAA3N,KAAa4N,EAAAD,EAAAE,eAA0BC,EAAAH,EAAAI,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,OAAOpK,IAAA+J,EAAAM,WACjHC,KCIAC,aAAA,mDAEA,SAAAC,IACA,OAAApO,KAAAqO,OAAAC,cAGA,SAAAC,IACA,IAAAC,GAAA,0CACAC,EAAAzO,KAAAsH,KACA,GAAAkH,EAAAE,QAAAD,IAAA,EACA,OAAAA,EAEA,IAAAE,EAAAH,EAAA1J,KAAA,MAAA8J,cACA,MAAAC,MAAA,4CAAAzE,OAAAuE,IAGA,SAAAG,IACA,IAAAb,EAAA,GAAA7D,OAAA+D,EAAA,WAAA/D,OAAApK,KAAA+O,OAAA,UAAA3E,OAAApK,KAAAgP,KAAA,UAAA5E,OACApK,KAAAiP,QADA,aAAA7E,OAEApK,KAAAkP,WAFA,YAAA9E,OAEApK,KAAAmP,UAFA,SAAA/E,OAGApK,KAAAoP,aAHA,WAAAhF,OAIApK,KAAAqP,SAJA,cAAAjF,OAIApK,KAAAsP,UAJAlF,OAIApK,KAAAuP,YAJAnF,OAKApK,KAAAwP,UAGA,OADAxP,KAAAyP,MAAA,UAAAxB,GACAA,EAIA,SAAAyB,IACA,IAAAC,EAAA3P,KAAA2P,QAAAC,IAAA,SAAAC,GACA,IAAAC,EAAA,SAAA1F,OAAAyF,EAAAC,MAAA,KACAC,EAAA,QAAA3F,OAAAyF,EAAAE,KAAA,KACAC,EAAA,SAAA5F,OAAAyF,EAAAG,MAAA,KACAC,EAAA,QAAA7F,OAAAyF,EAAAI,KAAA,KACAC,EAAA,GAAA9F,OAAAyF,EAAAM,IAAA,KAAA/F,OAAAyF,EAAAO,KACAC,EAAA,YAgBA,OAfAR,EAAAC,QACAO,GAAAP,GAEAD,EAAAE,OACAM,GAAAN,GAEAF,EAAAG,QACAK,GAAAL,GAEAH,EAAAI,OACAI,GAAAJ,GAEAJ,EAAAM,KAAAN,EAAAO,MACAC,GAAAH,GAEAG,IAEA,OAAAV,EAAA7K,KAAA,IAIA,SAAAwL,IACA,IAAAC,EAAAvQ,KAAAuQ,MAAAX,IAAA,SAAAY,GACA,IAAAV,EAAA,SAAA1F,OAAAoG,EAAAV,OACAW,EAAA,UAAArG,OAAAoG,EAAAC,QACAC,EAAA,YAAAtG,OAAAoG,EAAAE,UACAC,EAAA,aAAAvG,OAAAoG,EAAAG,WACAT,EAAAM,EAAAI,UAAAhB,IAAA,SAAAiB,GACA,GAAAA,EAAAC,UAAAD,EAAAE,OACA,UAAA3G,OAAAyG,EAAAC,SAAA,KAAA1G,OAAAyG,EAAAE,QAEA,MAAAlC,MAAA,8DAEAmC,EAAAd,EAAApL,KAAA,IACAmM,EAAA,SAAA7G,OAAA0F,EAAA,KAAA1F,OAAAuG,EAAA,KAAAvG,OAAAsG,EAAA,KAAAtG,OAAAqG,GAAArG,OAAA4G,GACA,OAAAC,IAEA,OAAAV,EAAA/M,OAAA,EAAA+M,EAAA,MAGA,SAAAW,IACA,IAAAC,GAAA,aACA,GAAAA,EAAAzC,QAAA1O,KAAAoR,QAAA,EACA,OAAApR,KAAAoR,MAEA,MAAAvC,MAAA,kCAAAzE,OAAA+G,EAAArM,KAAA,QAGA,SAAAuM,IACA,GAAArR,KAAA+P,KAAAvM,OAAA,OACAuM,EAAA/P,KAAA+P,KACA,SAAA3F,OAAA2F,EAAA,QAAA3F,OAAA2F,EAAA,IAEA,MAAAlB,MAAA,6CAGA,IAAAyC,GACA3Q,KAAA,aACA4Q,UACApC,UAAAf,EACAc,WAAAX,EACAN,OAAAa,EACAS,WAAAG,EACAF,SAAAc,EACAjB,SAAA6B,EACAjC,QAAAoC,GAEAG,OACAzC,QACAzH,KAAAvC,OACA0M,UAAA,GAEApD,QACA/G,KAAAvC,OACA2M,QAAA,OAEAC,QACArK,KAAA/C,UAEA6K,cACA9H,KAAAvC,OACA0M,UAAA,GAEAnC,UACAhI,KAAAvC,OACA2M,QAAA,MAEA/B,SACArI,KAAA2C,MACAyH,QAAA,sBAEAnB,OACAjJ,KAAA2C,MACAyH,QAAA,sBAEApK,MACAA,KAAAvC,OACA2M,QAAA,WAEAN,OACA9J,KAAAvC,OACA2M,QAAA,KAEA3B,MACAzI,KAAA2C,MACAyH,QAAA,6BAEA1C,MACA1H,KAAAsK,OACAH,UAAA,KCvJ8RI,EAAA,ECM/Q,SAAAC,EACfC,EACArE,EACAQ,EACA8D,EACAC,EACAC,EACAC,EACAC,GAGA,IAqBAC,EArBAC,EAAA,oBAAAP,EACAA,EAAAO,QACAP,EAiDA,GA9CArE,IACA4E,EAAA5E,SACA4E,EAAApE,kBACAoE,EAAAC,WAAA,GAIAP,IACAM,EAAAE,YAAA,GAIAN,IACAI,EAAAG,SAAA,UAAAP,GAIAC,GACAE,EAAA,SAAAK,GAEAA,EACAA,GACA1S,KAAA2S,QAAA3S,KAAA2S,OAAAC,YACA5S,KAAA6S,QAAA7S,KAAA6S,OAAAF,QAAA3S,KAAA6S,OAAAF,OAAAC,WAEAF,GAAA,qBAAAI,sBACAJ,EAAAI,qBAGAb,GACAA,EAAA1R,KAAAP,KAAA0S,GAGAA,KAAAK,uBACAL,EAAAK,sBAAAC,IAAAb,IAKAG,EAAAW,aAAAZ,GACGJ,IACHI,EAAAD,EACA,WAAqBH,EAAA1R,KAAAP,UAAAkT,MAAAC,SAAAC,aACrBnB,GAGAI,EACA,GAAAC,EAAAE,WAAA,CAGAF,EAAAe,cAAAhB,EAEA,IAAAiB,EAAAhB,EAAA5E,OACA4E,EAAA5E,OAAA,SAAA6F,EAAAb,GAEA,OADAL,EAAA9R,KAAAmS,GACAY,EAAAC,EAAAb,QAEK,CAEL,IAAAc,EAAAlB,EAAAmB,aACAnB,EAAAmB,aAAAD,KACApJ,OAAAoJ,EAAAnB,IACAA,GAIA,OACA1S,QAAAoS,EACAO,WCnFA,IAAAoB,EAAgB5B,EACdD,EACAnE,EACAQ,GACF,EACA,KACA,KACA,MAIAwF,EAAApB,QAAAqB,OAAA,iBACe,IAAAC,EAAAF,UCjBfG,EAAA,iCCFAjU,EAAAD,QAAA","file":"StaticMap.umd.min.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"StaticMap\"] = factory();\n\telse\n\t\troot[\"StaticMap\"] = factory();\n})((typeof self !== 'undefined' ? self : this), function() {\nreturn "," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var i\n if ((i = window.document.currentScript) && (i = i.src.match(/(.+\\/)[^/]+\\.js$/))) {\n __webpack_public_path__ = i[1] // eslint-disable-line\n }\n}\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","module.exports = false;\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","exports.f = {}.propertyIsEnumerable;\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2018 Denis Pushkarev (zloirock.ru)'\n});\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","var core = module.exports = { version: '2.5.7' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var $export = require('./_export');\nvar defined = require('./_defined');\nvar fails = require('./_fails');\nvar spaces = require('./_string-ws');\nvar space = '[' + spaces + ']';\nvar non = '\\u200b\\u0085';\nvar ltrim = RegExp('^' + space + space + '*');\nvar rtrim = RegExp(space + space + '*$');\n\nvar exporter = function (KEY, exec, ALIAS) {\n var exp = {};\n var FORCE = fails(function () {\n return !!spaces[KEY]() || non[KEY]() != non;\n });\n var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY];\n if (ALIAS) exp[ALIAS] = fn;\n $export($export.P + $export.F * FORCE, 'String', exp);\n};\n\n// 1 -> String#trimLeft\n// 2 -> String#trimRight\n// 3 -> String#trim\nvar trim = exporter.trim = function (string, TYPE) {\n string = String(defined(string));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n};\n\nmodule.exports = exporter;\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","'use strict';\nvar global = require('./_global');\nvar has = require('./_has');\nvar cof = require('./_cof');\nvar inheritIfRequired = require('./_inherit-if-required');\nvar toPrimitive = require('./_to-primitive');\nvar fails = require('./_fails');\nvar gOPN = require('./_object-gopn').f;\nvar gOPD = require('./_object-gopd').f;\nvar dP = require('./_object-dp').f;\nvar $trim = require('./_string-trim').trim;\nvar NUMBER = 'Number';\nvar $Number = global[NUMBER];\nvar Base = $Number;\nvar proto = $Number.prototype;\n// Opera ~12 has broken Object#toString\nvar BROKEN_COF = cof(require('./_object-create')(proto)) == NUMBER;\nvar TRIM = 'trim' in String.prototype;\n\n// 7.1.3 ToNumber(argument)\nvar toNumber = function (argument) {\n var it = toPrimitive(argument, false);\n if (typeof it == 'string' && it.length > 2) {\n it = TRIM ? it.trim() : $trim(it, 3);\n var first = it.charCodeAt(0);\n var third, radix, maxCode;\n if (first === 43 || first === 45) {\n third = it.charCodeAt(2);\n if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix\n } else if (first === 48) {\n switch (it.charCodeAt(1)) {\n case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n default: return +it;\n }\n for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) {\n code = digits.charCodeAt(i);\n // parseInt parses a string to a first unavailable symbol\n // but ToNumber should return NaN if a string contains unavailable symbols\n if (code < 48 || code > maxCode) return NaN;\n } return parseInt(digits, radix);\n }\n } return +it;\n};\n\nif (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) {\n $Number = function Number(value) {\n var it = arguments.length < 1 ? 0 : value;\n var that = this;\n return that instanceof $Number\n // check on 1..constructor(foo) case\n && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER)\n ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n };\n for (var keys = require('./_descriptors') ? gOPN(Base) : (\n // ES3:\n 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n // ES6 (in case, if modules with ES6 Number statics required before):\n 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n ).split(','), j = 0, key; keys.length > j; j++) {\n if (has(Base, key = keys[j]) && !has($Number, key)) {\n dP($Number, key, gOPD(Base, key));\n }\n }\n $Number.prototype = proto;\n proto.constructor = $Number;\n require('./_redefine')(global, NUMBER, $Number);\n}\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('img',{attrs:{\"src\":_vm.mapUrl}})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./static-map.vue?vue&type=template&id=89561ac4&\"\nimport script from \"./static-map.vue?vue&type=script&lang=js&\"\nexport * from \"./static-map.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"static-map.vue\"\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","module.exports = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003' +\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack://StaticMap/webpack/universalModuleDefinition","webpack://StaticMap/webpack/bootstrap","webpack://StaticMap/./node_modules/core-js/modules/_iter-define.js","webpack://StaticMap/./node_modules/core-js/modules/_flags.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopd.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dps.js","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://StaticMap/./node_modules/core-js/modules/_fix-re-wks.js","webpack://StaticMap/./node_modules/core-js/modules/_dom-create.js","webpack://StaticMap/./node_modules/core-js/modules/_redefine.js","webpack://StaticMap/./node_modules/core-js/modules/_object-create.js","webpack://StaticMap/./node_modules/core-js/modules/_wks.js","webpack://StaticMap/./node_modules/core-js/modules/_library.js","webpack://StaticMap/./node_modules/core-js/modules/_cof.js","webpack://StaticMap/./node_modules/core-js/modules/_hide.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.flags.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gpo.js","webpack://StaticMap/./node_modules/core-js/modules/_iter-create.js","webpack://StaticMap/./node_modules/core-js/modules/es6.object.keys.js","webpack://StaticMap/./node_modules/core-js/modules/_to-integer.js","webpack://StaticMap/./node_modules/core-js/modules/_property-desc.js","webpack://StaticMap/./node_modules/core-js/modules/_to-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-pie.js","webpack://StaticMap/./node_modules/core-js/modules/_shared.js","webpack://StaticMap/./node_modules/core-js/modules/_export.js","webpack://StaticMap/./node_modules/core-js/modules/_inherit-if-required.js","webpack://StaticMap/./node_modules/core-js/modules/_object-sap.js","webpack://StaticMap/./node_modules/core-js/modules/_shared-key.js","webpack://StaticMap/./node_modules/core-js/modules/_iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_to-iobject.js","webpack://StaticMap/./node_modules/core-js/modules/_has.js","webpack://StaticMap/./node_modules/core-js/modules/_to-primitive.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.to-string.js","webpack://StaticMap/./node_modules/core-js/modules/_global.js","webpack://StaticMap/./node_modules/core-js/modules/_to-absolute-index.js","webpack://StaticMap/./node_modules/core-js/modules/_fails.js","webpack://StaticMap/./node_modules/core-js/modules/_set-to-string-tag.js","webpack://StaticMap/./node_modules/core-js/modules/_core.js","webpack://StaticMap/./node_modules/core-js/modules/_iterators.js","webpack://StaticMap/./node_modules/core-js/modules/_object-dp.js","webpack://StaticMap/./node_modules/core-js/modules/_set-proto.js","webpack://StaticMap/./node_modules/core-js/modules/_object-gopn.js","webpack://StaticMap/./node_modules/core-js/modules/_ctx.js","webpack://StaticMap/./node_modules/core-js/modules/_add-to-unscopables.js","webpack://StaticMap/./node_modules/core-js/modules/_to-length.js","webpack://StaticMap/./node_modules/core-js/modules/_descriptors.js","webpack://StaticMap/./node_modules/core-js/modules/es6.regexp.replace.js","webpack://StaticMap/./node_modules/core-js/modules/_string-trim.js","webpack://StaticMap/./node_modules/core-js/modules/web.dom.iterable.js","webpack://StaticMap/./node_modules/core-js/modules/_defined.js","webpack://StaticMap/./node_modules/core-js/modules/_array-includes.js","webpack://StaticMap/./node_modules/core-js/modules/es6.number.constructor.js","webpack://StaticMap/./node_modules/core-js/modules/_ie8-dom-define.js","webpack://StaticMap/./node_modules/core-js/modules/_uid.js","webpack://StaticMap/./node_modules/core-js/modules/es6.array.iterator.js","webpack://StaticMap/./node_modules/core-js/modules/_an-object.js","webpack://StaticMap/./node_modules/core-js/modules/_object-keys-internal.js","webpack://StaticMap/./node_modules/core-js/modules/_is-object.js","webpack://StaticMap/./node_modules/core-js/modules/_iter-step.js","webpack://StaticMap/./node_modules/core-js/modules/_a-function.js","webpack://StaticMap/./node_modules/core-js/modules/_enum-bug-keys.js","webpack://StaticMap/./node_modules/core-js/modules/_html.js","webpack://StaticMap/./src/components/static-map.vue?f1dc","webpack://StaticMap/src/components/static-map.vue","webpack://StaticMap/./src/components/static-map.vue?1ba1","webpack://StaticMap/./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack://StaticMap/./src/components/static-map.vue","webpack://StaticMap/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js","webpack://StaticMap/./node_modules/core-js/modules/_string-ws.js"],"names":["root","factory","exports","module","define","amd","self","this","installedModules","__webpack_require__","moduleId","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","LIBRARY","$export","redefine","hide","Iterators","$iterCreate","setToStringTag","getPrototypeOf","ITERATOR","BUGGY","keys","FF_ITERATOR","KEYS","VALUES","returnThis","Base","NAME","Constructor","next","DEFAULT","IS_SET","FORCED","methods","IteratorPrototype","getMethod","kind","proto","TAG","DEF_VALUES","VALUES_BUG","$native","$default","$entries","undefined","$anyNative","entries","values","P","F","anObject","that","result","global","ignoreCase","multiline","unicode","sticky","$keys","enumBugKeys","O","pIE","createDesc","toIObject","toPrimitive","has","IE8_DOM_DEFINE","gOPD","getOwnPropertyDescriptor","f","e","dP","getKeys","defineProperties","Properties","length","window","document","currentScript","src","match","fails","defined","wks","KEY","exec","SYMBOL","fns","strfn","rxfn","String","RegExp","string","arg","isObject","is","createElement","it","SRC","TO_STRING","$toString","Function","TPL","split","inspectSource","val","safe","isFunction","join","dPs","IE_PROTO","Empty","PROTOTYPE","createDict","iframeDocument","iframe","lt","gt","style","display","appendChild","contentWindow","open","write","close","store","uid","USE_SYMBOL","$exports","toString","slice","flags","configurable","toObject","ObjectProto","constructor","descriptor","ceil","Math","floor","isNaN","bitmap","writable","propertyIsEnumerable","core","SHARED","push","version","copyright","ctx","type","source","own","out","exp","IS_FORCED","IS_GLOBAL","G","IS_STATIC","S","IS_PROTO","IS_BIND","B","target","expProto","U","W","R","setPrototypeOf","set","C","fn","shared","cof","IObject","valueOf","TypeError","$flags","DESCRIPTORS","concat","__g","toInteger","max","min","index","def","tag","stat","__e","Attributes","check","test","buggy","Array","__proto__","hiddenKeys","getOwnPropertyNames","aFunction","a","b","apply","arguments","UNSCOPABLES","ArrayProto","REPLACE","$replace","searchValue","replaceValue","spaces","space","non","ltrim","rtrim","exporter","ALIAS","FORCE","trim","TYPE","replace","$iterators","TO_STRING_TAG","ArrayValues","DOMIterables","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","collections","explicit","Collection","toLength","toAbsoluteIndex","IS_INCLUDES","$this","el","fromIndex","inheritIfRequired","gOPN","$trim","NUMBER","$Number","BROKEN_COF","TRIM","toNumber","argument","third","radix","maxCode","first","charCodeAt","NaN","code","digits","parseInt","j","id","px","random","addToUnscopables","step","iterated","_t","_i","_k","Arguments","arrayIndexOf","names","done","documentElement","render","_vm","_h","$createElement","_c","_self","attrs","mapUrl","staticRenderFns","BASE_URL_MAP","generateFormatMap","format","toLowerCase","generateMapType","types","currenType","indexOf","upperTypes","toUpperCase","Error","generateMapUrl","center","zoom","sizeMap","mapTypeMap","formatMap","googleApiKey","scaleMap","language","markersMap","pathsMap","styleMap","$emit","generateMarkers","markers","map","marker","color","size","label","icon","latLng","lat","lng","markerUrl","generatePaths","paths","path","weight","geodesic","fillcolor","locations","location","startLat","endLng","joinLatLng","pathUrl","generateScaleMap","allowedScales","scale","generateSizeMap","generateCustomStyles","customStyle","custom","JSON","parse","forEach","v","stylers","featureType","elementType","propertyname","propertyval","encodeURIComponent","static_mapvue_type_script_lang_js_","computed","props","required","default","getUrl","Number","components_static_mapvue_type_script_lang_js_","normalizeComponent","scriptExports","functionalTemplate","injectStyles","scopeId","moduleIdentifier","shadowMode","hook","options","_compiled","functional","_scopeId","context","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","$root","$options","shadowRoot","_injectStyles","originalRender","h","existing","beforeCreate","component","__file","static_map","__webpack_exports__"],"mappings":"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","file":"StaticMap.umd.min.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"StaticMap\"] = factory();\n\telse\n\t\troot[\"StaticMap\"] = factory();\n})((typeof self !== 'undefined' ? self : this), function() {\nreturn "," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n","'use strict';\n// 21.2.5.3 get RegExp.prototype.flags\nvar anObject = require('./_an-object');\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n","var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n","var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var i\n if ((i = window.document.currentScript) && (i = i.src.match(/(.+\\/)[^/]+\\.js$/))) {\n __webpack_public_path__ = i[1] // eslint-disable-line\n }\n}\n","'use strict';\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar fails = require('./_fails');\nvar defined = require('./_defined');\nvar wks = require('./_wks');\n\nmodule.exports = function (KEY, length, exec) {\n var SYMBOL = wks(KEY);\n var fns = exec(defined, SYMBOL, ''[KEY]);\n var strfn = fns[0];\n var rxfn = fns[1];\n if (fails(function () {\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n })) {\n redefine(String.prototype, KEY, strfn);\n hide(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return rxfn.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return rxfn.call(string, this); }\n );\n }\n};\n","var isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n","var global = require('./_global');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar SRC = require('./_uid')('src');\nvar TO_STRING = 'toString';\nvar $toString = Function[TO_STRING];\nvar TPL = ('' + $toString).split(TO_STRING);\n\nrequire('./_core').inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n","// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n","var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n","module.exports = false;\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","// 21.2.5.3 get RegExp.prototype.flags()\nif (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(RegExp.prototype, 'flags', {\n configurable: true,\n get: require('./_flags')\n});\n","// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n","'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n","// 19.1.2.14 Object.keys(O)\nvar toObject = require('./_to-object');\nvar $keys = require('./_object-keys');\n\nrequire('./_object-sap')('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n","// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n","exports.f = {}.propertyIsEnumerable;\n","var core = require('./_core');\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: require('./_library') ? 'pure' : 'global',\n copyright: '© 2018 Denis Pushkarev (zloirock.ru)'\n});\n","var global = require('./_global');\nvar core = require('./_core');\nvar hide = require('./_hide');\nvar redefine = require('./_redefine');\nvar ctx = require('./_ctx');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n","var isObject = require('./_is-object');\nvar setPrototypeOf = require('./_set-proto').set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n","// most Object methods by ES6 should accept primitives\nvar $export = require('./_export');\nvar core = require('./_core');\nvar fails = require('./_fails');\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n","var shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n","// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n","// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n","var hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","'use strict';\nrequire('./es6.regexp.flags');\nvar anObject = require('./_an-object');\nvar $flags = require('./_flags');\nvar DESCRIPTORS = require('./_descriptors');\nvar TO_STRING = 'toString';\nvar $toString = /./[TO_STRING];\n\nvar define = function (fn) {\n require('./_redefine')(RegExp.prototype, TO_STRING, fn, true);\n};\n\n// 21.2.5.14 RegExp.prototype.toString()\nif (require('./_fails')(function () { return $toString.call({ source: 'a', flags: 'b' }) != '/a/b'; })) {\n define(function toString() {\n var R = anObject(this);\n return '/'.concat(R.source, '/',\n 'flags' in R ? R.flags : !DESCRIPTORS && R instanceof RegExp ? $flags.call(R) : undefined);\n });\n// FF44- RegExp#toString has a wrong name\n} else if ($toString.name != TO_STRING) {\n define(function toString() {\n return $toString.call(this);\n });\n}\n","// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n","var toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n","var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n","var core = module.exports = { version: '2.5.7' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n","module.exports = {};\n","var anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n","// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n","// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = require('./_wks')('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n","// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n","// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","// @@replace logic\nrequire('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace) {\n // 21.1.3.14 String.prototype.replace(searchValue, replaceValue)\n return [function replace(searchValue, replaceValue) {\n 'use strict';\n var O = defined(this);\n var fn = searchValue == undefined ? undefined : searchValue[REPLACE];\n return fn !== undefined\n ? fn.call(searchValue, O, replaceValue)\n : $replace.call(String(O), searchValue, replaceValue);\n }, $replace];\n});\n","var $export = require('./_export');\nvar defined = require('./_defined');\nvar fails = require('./_fails');\nvar spaces = require('./_string-ws');\nvar space = '[' + spaces + ']';\nvar non = '\\u200b\\u0085';\nvar ltrim = RegExp('^' + space + space + '*');\nvar rtrim = RegExp(space + space + '*$');\n\nvar exporter = function (KEY, exec, ALIAS) {\n var exp = {};\n var FORCE = fails(function () {\n return !!spaces[KEY]() || non[KEY]() != non;\n });\n var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY];\n if (ALIAS) exp[ALIAS] = fn;\n $export($export.P + $export.F * FORCE, 'String', exp);\n};\n\n// 1 -> String#trimLeft\n// 2 -> String#trimRight\n// 3 -> String#trim\nvar trim = exporter.trim = function (string, TYPE) {\n string = String(defined(string));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n};\n\nmodule.exports = exporter;\n","var $iterators = require('./es6.array.iterator');\nvar getKeys = require('./_object-keys');\nvar redefine = require('./_redefine');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar wks = require('./_wks');\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n","// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n","'use strict';\nvar global = require('./_global');\nvar has = require('./_has');\nvar cof = require('./_cof');\nvar inheritIfRequired = require('./_inherit-if-required');\nvar toPrimitive = require('./_to-primitive');\nvar fails = require('./_fails');\nvar gOPN = require('./_object-gopn').f;\nvar gOPD = require('./_object-gopd').f;\nvar dP = require('./_object-dp').f;\nvar $trim = require('./_string-trim').trim;\nvar NUMBER = 'Number';\nvar $Number = global[NUMBER];\nvar Base = $Number;\nvar proto = $Number.prototype;\n// Opera ~12 has broken Object#toString\nvar BROKEN_COF = cof(require('./_object-create')(proto)) == NUMBER;\nvar TRIM = 'trim' in String.prototype;\n\n// 7.1.3 ToNumber(argument)\nvar toNumber = function (argument) {\n var it = toPrimitive(argument, false);\n if (typeof it == 'string' && it.length > 2) {\n it = TRIM ? it.trim() : $trim(it, 3);\n var first = it.charCodeAt(0);\n var third, radix, maxCode;\n if (first === 43 || first === 45) {\n third = it.charCodeAt(2);\n if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix\n } else if (first === 48) {\n switch (it.charCodeAt(1)) {\n case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n default: return +it;\n }\n for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) {\n code = digits.charCodeAt(i);\n // parseInt parses a string to a first unavailable symbol\n // but ToNumber should return NaN if a string contains unavailable symbols\n if (code < 48 || code > maxCode) return NaN;\n } return parseInt(digits, radix);\n }\n } return +it;\n};\n\nif (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) {\n $Number = function Number(value) {\n var it = arguments.length < 1 ? 0 : value;\n var that = this;\n return that instanceof $Number\n // check on 1..constructor(foo) case\n && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER)\n ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n };\n for (var keys = require('./_descriptors') ? gOPN(Base) : (\n // ES3:\n 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n // ES6 (in case, if modules with ES6 Number statics required before):\n 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n ).split(','), j = 0, key; keys.length > j; j++) {\n if (has(Base, key = keys[j]) && !has($Number, key)) {\n dP($Number, key, gOPD(Base, key));\n }\n }\n $Number.prototype = proto;\n proto.constructor = $Number;\n require('./_redefine')(global, NUMBER, $Number);\n}\n","module.exports = !require('./_descriptors') && !require('./_fails')(function () {\n return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n","var id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n","'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","var isObject = require('./_is-object');\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n","var has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n","module.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n","// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n","var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('img',{attrs:{\"src\":_vm.mapUrl}})}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./static-map.vue?vue&type=script&lang=js&\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./static-map.vue?vue&type=template&id=5f546ca9&\"\nimport script from \"./static-map.vue?vue&type=script&lang=js&\"\nexport * from \"./static-map.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\ncomponent.options.__file = \"static-map.vue\"\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n","module.exports = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003' +\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n"],"sourceRoot":""} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 94ff063..a099905 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vue-static-map", - "version": "3.0.1", + "version": "3.0.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/src/App.vue b/src/App.vue index f447f34..a41056f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -9,6 +9,16 @@
{{url}}
+

Custom Styled Vue Static Map

+ +
+
{{styledUrl}}
+ Custom style WY by StipeP at Snazzy Maps +
@@ -19,6 +29,10 @@ function getUrl(url) { this.url = url; } +function getStyledUrl(url) { + this.styledUrl = url; +} + export default { data: () => { const dataValues = { @@ -68,7 +82,178 @@ export default { size: [800, 400], type: 'roadmap', url: '', + styledUrl: '', zoom: 13, + customStyle: [ + { + featureType: 'all', + elementType: 'geometry.fill', + stylers: [ + { + weight: '2.00', + }, + ], + }, + { + featureType: 'all', + elementType: 'geometry.stroke', + stylers: [ + { + color: '#9c9c9c', + }, + ], + }, + { + featureType: 'all', + elementType: 'labels.text', + stylers: [ + { + visibility: 'on', + }, + ], + }, + { + featureType: 'landscape', + elementType: 'all', + stylers: [ + { + color: '#f2f2f2', + }, + ], + }, + { + featureType: 'landscape', + elementType: 'geometry.fill', + stylers: [ + { + color: '#ffffff', + }, + ], + }, + { + featureType: 'landscape.man_made', + elementType: 'geometry.fill', + stylers: [ + { + color: '#ffffff', + }, + ], + }, + { + featureType: 'poi', + elementType: 'all', + stylers: [ + { + visibility: 'off', + }, + ], + }, + { + featureType: 'road', + elementType: 'all', + stylers: [ + { + saturation: -100, + }, + { + lightness: 45, + }, + ], + }, + { + featureType: 'road', + elementType: 'geometry.fill', + stylers: [ + { + color: '#eeeeee', + }, + ], + }, + { + featureType: 'road', + elementType: 'labels.text.fill', + stylers: [ + { + color: '#7b7b7b', + }, + ], + }, + { + featureType: 'road', + elementType: 'labels.text.stroke', + stylers: [ + { + color: '#ffffff', + }, + ], + }, + { + featureType: 'road.highway', + elementType: 'all', + stylers: [ + { + visibility: 'simplified', + }, + ], + }, + { + featureType: 'road.arterial', + elementType: 'labels.icon', + stylers: [ + { + visibility: 'off', + }, + ], + }, + { + featureType: 'transit', + elementType: 'all', + stylers: [ + { + visibility: 'off', + }, + ], + }, + { + featureType: 'water', + elementType: 'all', + stylers: [ + { + color: '#46bcec', + }, + { + visibility: 'on', + }, + ], + }, + { + featureType: 'water', + elementType: 'geometry.fill', + stylers: [ + { + color: '#c8d7d4', + }, + ], + }, + { + featureType: 'water', + elementType: 'labels.text.fill', + stylers: [ + { + color: '#070707', + }, + ], + }, + { + featureType: 'water', + elementType: 'labels.text.stroke', + stylers: [ + { + color: '#ffffff', + }, + ], + }, + ], }; return dataValues; }, @@ -78,6 +263,7 @@ export default { }, methods: { getUrl, + getStyledUrl, }, }; @@ -95,4 +281,8 @@ export default { pre { white-space: pre-line; } + +a { + color: #369; +} diff --git a/src/components/static-map.vue b/src/components/static-map.vue index 1eea268..4046828 100644 --- a/src/components/static-map.vue +++ b/src/components/static-map.vue @@ -26,7 +26,7 @@ function generateMapUrl() { this.googleApiKey }&scale=${this.scaleMap}&language=${this.language}${this.markersMap}${ this.pathsMap - }`; + }&${this.styleMap}`; this.$emit('get-url', mapUrl); return mapUrl; } @@ -96,6 +96,34 @@ function generateSizeMap() { throw Error('Size must have 2 values: WIDTH AND HEIGHT'); } +function generateCustomStyles() { + const result = []; + if (this.customStyle) { + let custom = []; + try { + custom = JSON.parse(this.customStyle); + } catch (e) { + custom = this.customStyle; + } + custom.forEach(v => { + let style = ''; + if (v.stylers) { + if (v.stylers.length > 0) { + style += `${(Object.prototype.hasOwnProperty.call(v, 'featureType') ? `feature:${v.featureType}` : 'feature:all')}|`; + style += `${(Object.prototype.hasOwnProperty.call(v, 'elementType') ? `element:${v.elementType}` : 'element:all')}|`; + v.stylers.forEach(val => { + const propertyname = Object.keys(val)[0]; + const propertyval = val[propertyname].toString().replace('#', '0x'); + style += `${propertyname}:${propertyval}|`; + }); + } + } + result.push(`style=${encodeURIComponent(style)}`); + }); + } + return result.join('&'); +} + export default { name: 'static-map', computed: { @@ -106,6 +134,7 @@ export default { pathsMap: generatePaths, scaleMap: generateScaleMap, sizeMap: generateSizeMap, + styleMap: generateCustomStyles, }, props: { center: { @@ -147,6 +176,10 @@ export default { type: Array, default: () => [500, 400], }, + customStyle: { + type: [String, Array], + default: null, + }, zoom: { type: Number, required: true,