mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
18 lines
376 B
JavaScript
18 lines
376 B
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/geospatial/geobaselayer.js
|
||
|
type: application/javascript
|
||
|
module-type: widget
|
||
|
|
||
|
geobaselayer widget to represent a base layer for a geomap widget. Clone of the data widget
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
exports.geobaselayer = require("$:/core/modules/widgets/data.js").data;
|
||
|
|
||
|
})();
|