コード例 #1
0
ファイル: export.dxf.php プロジェクト: sukma279/GIS
 function __construct($json, $map)
 {
     // Export polygon like Multiline in DXF
     $this->typeList[2] = wkbMultiLineString;
     $opt = array();
     $opt['DXF_INLINE_BLOCKS'] = FALSE;
     parent::__construct('DXF', 'dxf', $json, $map, false, $opt);
 }
コード例 #2
0
ファイル: export.gpx.php プロジェクト: sukma279/GIS
 function __construct($json, $map)
 {
     // Export polygon like Multiline in GPX
     $this->typeList[2] = wkbMultiLineString;
     /*$opt = array();
     		$opt["GPX_USE_EXTENSIONS"] = 'YES';*/
     parent::__construct("GPX", "GPX", $json, $map, false, NULL);
 }
コード例 #3
0
ファイル: export.kml.php プロジェクト: sukma279/GIS
 function __construct($json, $map)
 {
     $this->nbFieldBase = 2;
     parent::__construct('KML', 'kml', $json, $map, true, NULL, true);
 }
コード例 #4
0
ファイル: export.mif.php プロジェクト: sukma279/GIS
 function __construct($json, $map)
 {
     parent::__construct('MapInfo File', 'mif', $json, $map, true, NULL, true);
 }