summaryrefslogtreecommitdiff
path: root/plugins/leaflet/dialogs/leaflet.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/leaflet/dialogs/leaflet.js')
-rw-r--r--plugins/leaflet/dialogs/leaflet.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/leaflet/dialogs/leaflet.js b/plugins/leaflet/dialogs/leaflet.js
new file mode 100644
index 0000000..2f33765
--- /dev/null
+++ b/plugins/leaflet/dialogs/leaflet.js
@@ -0,0 +1,9 @@
+CKEDITOR.dialog.add("leaflet",function(){return{title:"Create/Edit Leaflet Map",minWidth:320,minHeight:125,contents:[{id:"location_tab",label:"Location",elements:[{id:"map_geocode",className:"geocode",type:"text",label:"Auto-Search of Coordinates.",setup:function(){this.setValue("")},onShow:function(){var a=jQuery(".geocode input")[0];new google.maps.places.Autocomplete(a);a=jQuery('<style type="text/css" />');a.html(".pac-container { z-index: 100000 !important;} input.minimap { margin-top: 18px !important; }");
+jQuery("head").append(a)}},{type:"html",id:"map_label",className:"label",style:"margin-bottom: -10px;",html:"<p>Manual Input of Coordinates:</p>"},{type:"hbox",widths:["50%","50%"],children:[{id:"map_latitude",className:"latitude",type:"text",label:"Latitude",setup:function(a){""!=a.element.data("lat")&&this.setValue(a.element.data("lat"))}},{id:"map_longitude",className:"longitude",type:"text",label:"Longitude",setup:function(a){""!=a.element.data("lon")&&this.setValue(a.element.data("lon"))}}]}]},
+{id:"options_tab",label:"Options",elements:[{type:"hbox",widths:["38%","38%","24%"],children:[{id:"width",className:"map_width",type:"text",label:"Map Width",setup:function(a){jQuery(".map_width input").attr("placeholder","400");""!=a.element.data("width")&&this.setValue(a.element.data("width"))}},{id:"height",className:"map_height",type:"text",label:"Map Height",setup:function(a){jQuery(".map_height input").attr("placeholder","400");""!=a.element.data("height")&&this.setValue(a.element.data("height"))}},
+{id:"map_zoom",className:"zoom",type:"select",label:"Zoom Level",width:"70px",items:[["1"],["2"],["3"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"]],setup:function(a){if(""!=a.element.data("zoom")){var b=a.element.data("zoom"),a=a.element.getChild(0).$.contentDocument.getElementById("map_container").getAttribute("data-zoom");a!=b&&(b=a);this.setValue(b)}else this.setValue("10")}}]},{type:"hbox",widths:["50%","50%"],children:[{type:"select",
+id:"map_tile",className:"tile",label:"Base Map Tile",items:[["MapQuestOpen.OSM"],["MapQuestOpen.Aerial"],["OpenStreetMap.Mapnik"],["OpenStreetMap.DE"],["OpenStreetMap.HOT"],["Esri.DeLorme"],["Esri.NatGeoWorldMap"],["Esri.WorldPhysical"],["Esri.WorldTopoMap"],["Thunderforest.OpenCycleMap"],["Thunderforest.Landscape"],["Stamen.Watercolor"]],setup:function(a){""!=a.element.data("tile")?this.setValue(a.element.data("tile")):this.setValue("MapQuestOpen.OSM")},commit:function(a){a.element.setHtml("");var b=
+jQuery(".geocode input").val(),f,g;if(""!=b){var c="https://maps.googleapis.com/maps/api/geocode/json?address="+b+"&sensor=false";jQuery.ajaxSetup({async:!1});jQuery.getJSON(c,function(a){"ZERO_RESULTS"!=a.status?(f=a.results[0].geometry.location.lat,g=a.results[0].geometry.location.lng):alert("The Place could not be Geocoded properly. Kindly choose another one.")})}var c=jQuery(".latitude input").val(),e=jQuery(".longitude input").val(),d=a.element.data("lat"),h=a.element.data("lon");if(""!=c&&""!=
+e&&(c!=d&&e!=h||""==b))f=c,g=e;var b=jQuery(".map_width input").val()||"400",c=jQuery(".map_height input").val()||"400",d=jQuery("select.zoom").val(),h=jQuery("select.tile").val(),j=jQuery("select.alignment").val(),i=jQuery(".minimap input:checked").val();void 0==i&&(i="off");e=(new Date).getTime();a.element.setAttribute("id","leaflet_div-"+e);a.element.data("lat",f);a.element.data("lon",g);a.element.data("width",b);a.element.data("height",c);a.element.data("zoom",d);a.element.data("tile",h);a.element.data("minimap",
+i);a.element.data("alignment",j);a.element.removeClass("align-left");a.element.removeClass("align-right");a.element.removeClass("align-center");a.element.addClass("align-"+j);mapParserPathFull=mapParserPath+"?lat="+f+"&lon="+g+"&width="+b+"&height="+c+"&zoom="+d+"&tile="+h+"&minimap="+i;d=new CKEDITOR.dom.element("iframe");d.setAttributes({scrolling:"no",id:"leaflet_iframe-"+e,"class":"leaflet_iframe",width:b+"px",height:c+"px",frameborder:0,allowTransparency:!0,src:mapParserPathFull,"data-cke-saved-src":mapParserPathFull});
+a.element.append(d)}},{type:"checkbox",id:"map_mini",className:"minimap",label:"Include MiniMap",setup:function(a){""!=a.element.data("minimap")&&"on"!=a.element.data("minimap")?this.setValue(""):this.setValue("true")}}]},{id:"map_alignment",className:"alignment",type:"select",label:"Alignment",items:[["Left","left"],["Right","right"],["Center","center"]],setup:function(a){""!=a.element.data("alignment")?this.setValue(a.element.data("alignment")):this.setValue("left")}}]}]}}); \ No newline at end of file