Home
last modified time | relevance | path

Searched full:geo (Results 1 – 25 of 165) sorted by relevance

1234567

/plugin/diagramsnet/lib/js/diagramly/
DDevTools.js13 var geo = this.getCellGeometry(cell);
17 if (geo != null)
19 if (geo.sourcePoint != null)
21 … tip += 'source=' + parseFloat(geo.sourcePoint.x) + ',' + parseFloat(geo.sourcePoint.y) + '<br>';
24 if (geo.targetPoint != null)
26 … tip += 'target=' + parseFloat(geo.targetPoint.x) + ',' + parseFloat(geo.targetPoint.y) + '<br>';
42 if (geo.points != null)
44 tip += 'points(' + geo.points.length + ')=';
46 for (var i = 0; i < geo.points.length; i++)
48 tip += parseFloat(geo.points[i].x) + ',' + parseFloat(geo.points[i].y) + ';';
[all …]
/plugin/diagramsnet/lib/plugins/
DedgeConnection.js9 var geo = this.graph.getCellGeometry(source);
11 while (geo != null && geo.relative)
14 geo = this.graph.getCellGeometry(source);
19 var geo = this.graph.getModel().getGeometry(clone);
21 if (geo != null)
24 geo.x = this.graph.snap(point.x - geo.width / 2) - this.graph.panDx / this.graph.view.scale;
25 geo.y = this.graph.snap(point.y - geo.height / 2) - this.graph.panDy / this.graph.view.scale;
39 geo.x = sourceState.x;
44 geo.y = sourceState.y;
Dexplore.js218 var geo = graph.getModel().getGeometry(graph.rootCell);
220 if (geo != null)
222 geo = geo.clone();
224 geo.x = cx - geo.width / 2;
225 geo.y = cy - geo.height / 3;
226 graph.getModel().setGeometry(graph.rootCell, geo);
247 var geo = graph.getModel().getGeometry(tmp);
249 if (geo != null)
251 geo.x = cx - geo.width / 2;
252 geo.y = cy - geo.height / 2;
[all …]
/plugin/diagramsnet/lib/js/diagramly/vsdx/
DmxVsdxCanvas2D.js53 * Create a new geo section.
65 * Create a new geo section.
159 * return the current geo section.
240 var geo = this.xmGeo;
241 x = ((x - geo.x + s.dx) * s.scale);
242 y = ((geo.height - y + geo.y - s.dy) * s.scale);
276 var geo = this.xmGeo;
277 var gh = geo.height * s.scale;
278 var gw = geo.width * s.scale;
279 x = (x - geo.x + s.dx) * s.scale;
[all …]
DVsdxExport.js337 function createShape(id, geo, layerIndex, xmlDoc, parentHeight, isChild) argument
347 var hw = geo.width/2, hh = geo.height/2;
349 …shape.appendChild(createCellElemScaled("PinX", geo.x + hw + (isChild? 0 : vsdxCanvas.shiftX), xmlD…
350 …shape.appendChild(createCellElemScaled("PinY", parentHeight - geo.y - hh - (isChild? 0 : vsdxCanva…
351 shape.appendChild(createCellElemScaled("Width", geo.width, xmlDoc));
352 shape.appendChild(createCellElemScaled("Height", geo.height, xmlDoc));
469 //Draw text first to have its shape cell elements before visio geo.
497 var geo = cell.geometry, origGeo = geo;
499 if (geo != null)
503 //fix relative geo coordinates
[all …]
/plugin/geotag/
Daction.php59 $geotags = p_get_metadata($ID, 'geo', METADATA_RENDER_USING_SIMPLE_CACHE) ?? [];
69 $event->data ['meta'] [] = ['name' => 'geo.region', 'content' => $region];
72 $event->data ['meta'] [] = ['name' => 'geo.placename', 'content' => $placename];
76 …$event->data ['meta'] [] = ['name' => 'geo.position', 'content' => $lat . ';' . $lon . ';' . $alt];
78 … $event->data ['meta'] [] = ['name' => 'geo.position', 'content' => $lat . ';' . $lon];
82 $event->data ['meta'] [] = ['name' => 'geo.country', 'content' => $country];
100 $event->data ['meta'] [] = ['name' => 'geo.geohash', 'content' => $geohash];
Dprint.css16 .geo {
29 .geo a:link, .geo a:visited {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dns/
DRRSetRoutingPolicy.php34 public function setGeo(RRSetRoutingPolicyGeoPolicy $geo) argument
36 $this->geo = $geo;
43 return $this->geo;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
DGeolayerdata.php48 public function setGeo(GeolayerdataGeo $geo) argument
50 $this->geo = $geo;
57 return $this->geo;
/plugin/geotag/syntax/
Dgeotag.php188 … $renderer->doc .= '<div class="h-geo geo"' . $style . ' title="' . $this->getLang('geotag_desc')
191 … $renderer->doc .= '<span itemprop="geo" itemscope itemtype="https://schema.org/GeoCoordinates">';
204 $renderer->meta ['geo'] ['lat'] = $ddlat;
205 $renderer->meta ['geo'] ['lon'] = $ddlon;
206 $renderer->meta ['geo'] ['placename'] = $placename;
207 $renderer->meta ['geo'] ['region'] = $region;
208 $renderer->meta ['geo'] ['country'] = $country;
209 $renderer->meta ['geo'] ['geohash'] = $geohash;
211 $renderer->meta ['geo'] ['alt'] = $alt;
/plugin/jdraw/src/com/mxgraph/examples/swing/
DPort.java37 mxGeometry geo = getCellGeometry(cell); in Port()
39 return (geo != null) ? geo.isRelative() : false; in Port()
74 mxGeometry geo = graph.getModel().getGeometry(v1); in Port() local
76 geo.setAlternateBounds(new mxRectangle(20, 20, 100, 50)); in Port()
DGraphEditor.java.bak489 mxGeometry geo = getModel().getGeometry(cell);
496 if (geo != null)
498 List<mxPoint> points = geo.getPoints();
537 tip += "geo=[";
539 if (geo != null)
541 tip += "x=" + numberFormat.format(geo.getX()) + ",y="
542 + numberFormat.format(geo.getY()) + ",width="
543 + numberFormat.format(geo.getWidth()) + ",height="
544 + numberFormat.format(geo.getHeight());
/plugin/diagramsnet/lib/js/orgchart/
DmxOrgChartLayout.js401 var geo = RPOrgChart.graph.model.cells[boxId].geometry;
402 return new OrgChart.Layout.Size.$ctor1(geo.width, geo.height);
434 var geo = cell.geometry.clone();
435 geo.x = node.State.TopLeft.X + offsetx;
436 geo.y = node.State.TopLeft.Y;
437 graph.model.setGeometry(cell, geo);
562 function pointOnCell(geo, p) argument
564 … return p.x >= geo.x && p.x <= geo.x + geo.width && p.y >= geo.y && p.y <= geo.y + geo.height;
/plugin/webdav/vendor/sabre/vobject/lib/Property/
DFloatValue.php82 // Special-casing the GEO property.
86 if ('GEO' === $this->name) {
113 // Special-casing the GEO property.
117 if ('GEO' === $this->name) {
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
DFloatValue.php87 // Special-casing the GEO property.
91 if ($this->name === 'GEO') {
124 // Special-casing the GEO property.
128 if ($this->name === 'GEO') {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Localservices/
DGoogleAdsHomeservicesLocalservicesV1DetailedLeadReport.php49 public $geo; variable in Google\\Service\\Localservices\\GoogleAdsHomeservicesLocalservicesV1DetailedLeadReport
175 public function setGeo($geo) argument
177 $this->geo = $geo;
184 return $this->geo;
/plugin/spatialhelper/helper/
Dsitemap.php122 $entry .= ' <georss:point>' . $meta['geo']['lat'] . ' ' . $meta['geo']['lon']
124 if (!empty($meta['geo']['alt'])) {
125 … $entry .= ' <georss:elev>' . $meta['geo']['alt'] . '</georss:elev>' . DOKU_LF;
230 … $plcm .= ' <Point><coordinates>' . $meta['geo']['lon'] . ',' . $meta['geo']['lat'];
231 if (!empty($meta['geo']['alt'])) {
232 $plcm .= ',' . $meta['geo']['alt'];
/plugin/diagramsnet/lib/js/grapheditor/
DActions.js220 var geo = graph.getCellGeometry(cells[0]);
222 if (geo != null)
224 bb = geo.getTerminalPoint(true);
302 var geo = graph.getCellGeometry(cell);
304 if (geo != null)
306 ui.copiedSize = new mxRectangle(geo.x, geo.y, geo.width, geo.height);
325 var geo = graph.getCellGeometry(cells[i]);
327 if (geo != null)
329 geo = geo.clone();
330 geo.width = ui.copiedSize.width;
[all …]
DGraph.js375 var geo = this.getCellGeometry(state.cell);
376 var g = (geo.alternateBounds != null) ? geo.alternateBounds : geo;
2449 var geo = this.getCellGeometry(result);
2451 while (geo != null && geo.relative)
2454 geo = this.getCellGeometry(result);
4038 var geo = this.getCellGeometry(realTarget);
4040 if (geo != null)
4046 pt.y -= geo.height / 2;
4050 pt.y += geo.height / 2;
4054 pt.x -= geo.width / 2;
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
DGeoPolygon.php6 * Geo polygon query.
10 …* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-geo-polygon-query…
DGeoBoundingBox.php8 * Geo bounding box query.
12 …* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-geo-bounding-box-…
DGeoDistance.php6 * Geo distance query.
10 …* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-geo-distance-quer…
/plugin/webdav/vendor/sabre/vobject/resources/schema/
Dxcard.rng107 param-geo = element geo { value-uri }?
180 param-pref, param-type, param-geo, param-tz,
236 property-geo = element geo {
372 | property-fn | property-geo | property-impp | property-key
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
Dxcard.rng107 param-geo = element geo { value-uri }?
180 param-pref, param-type, param-geo, param-tz,
236 property-geo = element geo {
372 | property-fn | property-geo | property-impp | property-key
/plugin/diagramsnet/lib/js/diagramly/graphml/
DmxGraphMlCodec.js74 var geo = cell.geometry;
76 if (!geo.adjustIt) continue;
83 var ratio = geo.x;
84 var dist = geo.y;
99 geo.x = np.x;
100 geo.y = np.y;
1826 var geo = node.geometry;
1828 if (shape && geo)
1833 var min = Math.min(geo.height, geo.width);
1835 if (min == geo.height) //fix coordinates
[all …]

1234567