GeodatabaseFeatureTable gdbFeatureTable = gdbPuntosEtiquetas.getGeodatabaseFeatureTableByLayerId(0); capaEtiquetas = new FeatureLayer(gdbFeatureTable); map.getLayers().add(capaEtiquetas);
class EventosMapaListener implements MapEventListener
{
@Override
public void mapReady(MapEvent event)
{
// System.out.println("mapReady");
capaEtiquetas.setEnableLabels(true);
}
}
Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: com.esri.map.FeatureLayer.nativeEnableLabels(JZ)V at com.esri.map.FeatureLayer.nativeEnableLabels(Native Method) at com.esri.map.FeatureLayer.setEnableLabels(Unknown Source) at es.esri.emt.navegador.layers.EtiquetasLayers$EventosMapaListener.mapReady(EtiquetasLayers.java:196) at com.esri.map.JMap.i(Unknown Source)
Hello,
Did you figure out how to do it? I have very similar issue only in Android. Its a struggle to find any info on this.