}
}
public Map<String, StyleMapEntry> parseStyleMap(String styleFileString) {
Map<String, StyleMapEntry> result = new HashMap<String, StyleMapEntry>();
StyleMapXmlParser smxp = new StyleMapXmlParser(styleFileString);
ColorParser cp = new ColorParser();
for (int i = 0; i < smxp.annotType.size(); i++) {
String typeName = ((String) smxp.annotType.elementAt(i));
String labelString = ((String) smxp.styleLabel.elementAt(i));
String featureValue = ((String) smxp.featureValue.elementAt(i));