| 108 | } |
| 109 | |
| 110 | static void gmlEndGeometryContainer(FILE *stream, char *name, char *namespace, const char *tab) |
| 111 | { |
| 112 | const char *tag_name=OWS_GML_DEFAULT_GEOMETRY_NAME; |
| 113 | |
| 114 | if(name) tag_name = name; |
| 115 | |
| 116 | if(namespace) |
| 117 | msIO_fprintf(stream, "%s</%s:%s>\n", tab, namespace, tag_name); |
| 118 | else |
| 119 | msIO_fprintf(stream, "%s</%s>\n", tab, tag_name); |
| 120 | } |
| 121 | |
| 122 | /* GML 2.1.2 */ |
| 123 | static int gmlWriteGeometry_GML2(FILE *stream, gmlGeometryListObj *geometryList, shapeObj *shape, const char *srsname, char *namespace, char *tab) |
no test coverage detected