function showResults(featureSet){ //remove all graphics on the maps graphics layer map.graphics.clear(); //Performance enhancer - assign featureSet array to a single variable. var resultFeatures = featureSet.features; $.each(resultFeatures, function(index, featureItem){ featureItem.setSymbol(symbol); featureItem.setInfoTemplate(infoTemplate); map.graphics.add(featureItem); }); var extGraphics = GraphicsUtils.graphicsExtent(map.graphics.graphics); map.setExtent(extGraphics); }
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.