zoukankan      html  css  js  c++  java
  • Arcgis Runtime for andriod 100 Simple marker symbol

     GraphicsOverlay graphicsOverlay = new GraphicsOverlay(); 
    58         mMapView.getGraphicsOverlays().add(graphicsOverlay); 
    59 
     
    60         //[DocRef: Name=Point graphic with symbol, Category=Fundamentals, Topic=Symbols and Renderers] 
    61         //create a simple marker symbol 
    62         SimpleMarkerSymbol symbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.Style.CIRCLE, Color.RED, 12); //size 12, style of circle 
    63 
     
    64         //add a new graphic with a new point geometry 
    65         Point graphicPoint = new Point(-226773, 6550477, SpatialReferences.getWebMercator()); 
    66         Graphic graphic = new Graphic(graphicPoint, symbol); 
    67         graphicsOverlay.getGraphics().add(graphic); 

    //define a polyline for the boat trip
    Polyline boatRoute = getBoatTripGeometry();
    //define a line symbol
    SimpleLineSymbol lineSymbol = new SimpleLineSymbol(SimpleLineSymbol.Style.DASH, Color.rgb(128, 0, 128), 4);
    //create the graphic
    Graphic boatTripGraphic = new Graphic(boatRoute, lineSymbol);
    //add to the graphic overlay
    graphicOverlay.getGraphics().add(boatTripGraphic);

  • 相关阅读:
    033 流程控制之if判断
    032 基本运算符
    031 格式化输出的三种方式
    030 Python与用户交互
    029 解压缩
    028 布尔类型
    027 字典类型
    026 列表类型
    025 字符串类型
    023 数据类型基础
  • 原文地址:https://www.cnblogs.com/gisoracle/p/7413952.html
Copyright © 2011-2022 走看看