1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 02:03:14 +00:00
TiddlyWiki5/plugins/tiddlywiki/geospatial/widgets/geolayer.js
2023-10-26 16:19:39 +01:00

18 lines
359 B
JavaScript

/*\
title: $:/plugins/tiddlywiki/geospatial/geolayer.js
type: application/javascript
module-type: widget
geolayer widget to represent a layer for a geomap widget. Clone of the data widget
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.geolayer = require("$:/core/modules/widgets/data.js").data;
})();