line

  1. R

    Android Question Get shortest distance from point to line on map

    Have a point and a line on a map and need the shortest distance (in meters) between that point and that line. The point is set by a latitude, longitude type and the lines is set by 2 of these types. This seems the simplest way to do this: For distance up To a few thousands meters I would...
  2. A

    Android Question GoTo line

    Hello, Is there a way in code to skip to specific line by goto? For example: If Succes Then Msgbox("","") Else goto gg End If File.WriteString(File.DirInternal,"1.txt","") gg: Msgbox("End","") (what will happen is that if Succes = false then it will directly go to line gg and...
  3. W

    Android Question DrawPath() problem with Clipping? [SOLVED]

    Hi! I'm having a question about ImageView, Canvas and DrawPath(). I want to draw multiple lines with DrawPath with this Code (see also attachment for a demo): Dim canvas1 As Canvas canvas1.Initialize(ImageView1) Dim PolygonPath As Path PolygonPath.Initialize (64,154) PolygonPath.LineTo...
Top