Package aimax.osm.data.impl

Examples of aimax.osm.data.impl.DefaultMap


    @Override
    protected void initMapAndClassifier() {
      OsmMap map = (OsmMap) createComponent(MAP_CLASS_PROPERTY,
          OsmMap.class);
      if (map == null)
        map = new DefaultMap();
      view.setMap(map);
      classifier = (EntityClassifier<EntityViewInfo>) createComponent(
          CLASSIFIER_CLASS_PROPERTY, EntityClassifier.class);
      if (classifier == null)
        classifier = new MapStyleFactory().createDefaultClassifier();
View Full Code Here


  /**
   * Creates the map, provides it to the view, and creates a corresponding
   * entity classifier which is used by default when reading maps.
   */
  protected void initMapAndClassifier() {
    view.setMap(new DefaultMap());
    classifier = new MapStyleFactory().createDefaultClassifier();
  }
View Full Code Here

TOP

Related Classes of aimax.osm.data.impl.DefaultMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.