| | |
| | | switch (meta.type) |
| | | { |
| | | case "mpt": |
| | | return "http://{host}/SG/Imagery;" + sgsID + ".mpt"; // Elevation |
| | | return "{host}/SG/Imagery;" + sgsID + ".mpt"; // Elevation |
| | | case "3dml": |
| | | return "http://{host}/SG/b3dm/" + sgsID + "/tileset.json"; |
| | | return "{host}/SG/b3dm/" + sgsID + "/tileset.json"; |
| | | case "cpt": |
| | | return "http://{host}/SG/pnts/" + sgsID + "/tileset.json"; |
| | | return "{host}/SG/pnts/" + sgsID + "/tileset.json"; |
| | | default: |
| | | return string.Empty; |
| | | } |
| | |
| | | /// </summary> |
| | | private SysTask CreateTask(XYZArgs args, List<SysMeta> list) |
| | | { |
| | | args.name = list[0].name; |
| | | for (int i = 1; i < list.Count; i++) |
| | | { |
| | | string name =args.name+ "," + list[i].name; |
| | | if (name.Length > 150) break; |
| | | |
| | | args.name = name; |
| | | } |
| | | |
| | | switch (list[0].type) |
| | | { |
| | | case "3dml": |