rc-tile-map
Version:
14 lines (11 loc) • 388 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports['default'] = function (appKey, callbackName) {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '//api.map.baidu.com/api?v=3.0&ak=' + appKey + '&callback=' + callbackName;
document.body.appendChild(script);
};
module.exports = exports['default'];