Class TLcyBingMapsAddOn


public class TLcyBingMapsAddOn extends ALcyFormatAddOn

This add-on provides support for Bing maps data on a 2D map.

Since:
11.0
  • Constructor Details

    • TLcyBingMapsAddOn

      public TLcyBingMapsAddOn()
      Default constructor
  • Method Details

    • plugInto

      public void plugInto(ILcyLucyEnv aLucyEnv)
      Description copied from class: ALcyFormatAddOn

      Creates and plugs in the add-on's format.

      Overrides:
      plugInto in class ALcyFormatAddOn
      Parameters:
      aLucyEnv - the Lucy environment to plug into
      See Also:
    • createBaseFormat

      protected ALcyFormat createBaseFormat()

      Returns a new data format for this add-on. Override this method to extend the default format with new functionality.

      For example, to alter the icon of the layers of this format, you can decorate the layer factory created in the format:

      
       @Override
       protected ALcyFormat createBaseFormat() {
         return new ALcyFormatWrapper(super.createBaseFormat()){
           @Override
           protected ILcdGXYLayerFactory createGXYLayerFactory(){
             final ILcdGXYLayerFactory delegate = super.createGXYLayerFactory();
             return new ILcdGXYLayerFactory(){
               @Override
               public ILcdGXYLayer createGXYLayer(ILcdModel aModel){
                 ILcdGXYLayer layer = delegate.createGXYLayer(aModel);
                 if (layer != null){
                   ILcdIcon icon = ...;
                   layer.setIcon(icon);
                 }
                 return layer;
               }
             }
           }
         }
       }
       

      When overriding this method, it might be required to override createCopyrightComponent(com.luciad.view.gxy.ILcdGXYView) as well.

      Specified by:
      createBaseFormat in class ALcyFormatAddOn
      Returns:
      a new format for this add-on
      See Also:
    • createFormatWrapper

      protected final ALcyFormat createFormatWrapper(ALcyFormat aBaseFormat)
      Description copied from class: ALcyFormatAddOn

      Returns a new data format wrapper for this add-on. A format wrapper extends the base format with aspects such as asynchronous painting, mutable file behavior, safe guarding, etc.

      Overriding this method of an existing add-on should be done with extreme care as add-ons typically rely on the wrappers that should be present (e.g. a safe guard).

      Specified by:
      createFormatWrapper in class ALcyFormatAddOn
      Parameters:
      aBaseFormat - the base format to wrap
      Returns:
      a new format for this add-on
      See Also:
    • createCopyrightComponent

      public Component createCopyrightComponent(ILcdGXYView aGXYView)

      Returns a component representing the copyright information of the Bing map layers contained in aGXYView which will be added on the map.

      This method will be called once for the view of each created ILcyMapComponent. It is up to the returned component to keep its state in sync with the state of aGXYView. E.g. when a Bing layer is added, the component should contain the relevant copyright information. When the scale of the view changes, the copyright info in the component should be updated, ... .

      The default implementation of this method relies on the default implementation of the created ALcyFormat. When customizing that ALcyFormat, it might be required to override this method as well.

      Parameters:
      aGXYView - The view
      Returns:
      a self-updating component representing the copyright information of the Bing map layers contained in aGXYView
    • createLogoComponent

      public Component createLogoComponent(ILcdGXYView aGXYView)

      Returns a component representing the logo of the Bing map layers contained in aGXYView which will be added on the map.

      This method will be called once for the view of each created ILcyMapComponent. It is up to the returned component to keep its state in sync with the state of aGXYView. E.g. when a Bing layer is added, the component should contain the relevant logo.

      The default implementation of this method relies on the default implementation of the created ALcyFormat. When customizing that ALcyFormat, it might be required to override this method as well.

      Parameters:
      aGXYView - The view
      Returns:
      a self-updating component representing the logo of the Bing map layers contained in aGXYView