Skip to content

Commit

Permalink
Formatting improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
devemux86 committed Dec 18, 2023
1 parent 35a3dbe commit 4c14b98
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
package org.oscim.android.test;

import android.os.Bundle;

import java.util.Arrays;
import java.util.List;

import org.oscim.backend.canvas.Color;
import org.oscim.backend.canvas.Paint;
import org.oscim.core.GeoPoint;
Expand All @@ -31,6 +27,9 @@
import org.oscim.layers.vector.geometries.Style;
import org.oscim.utils.ColorUtil;

import java.util.Arrays;
import java.util.List;

public class VectorLayerActivity extends BitmapTileActivity {

@Override
Expand Down Expand Up @@ -112,8 +111,8 @@ private void addThickSemitransparentPolyline(VectorLayer vectorLayer) {

//create a polyline in Hamburg, Germany
final List<GeoPoint> points = Arrays.asList(
new GeoPoint(53.5334, 10.069833),new GeoPoint(53.5419, 10.09075),new GeoPoint(53.53745, 10.091017),new GeoPoint(53.54105, 10.0928),new GeoPoint(53.536721, 10.09416),
new GeoPoint(53.5406, 10.08365), new GeoPoint(53.5406, 11.0)
new GeoPoint(53.5334, 10.069833), new GeoPoint(53.5419, 10.09075), new GeoPoint(53.53745, 10.091017), new GeoPoint(53.54105, 10.0928), new GeoPoint(53.536721, 10.09416),
new GeoPoint(53.5406, 10.08365), new GeoPoint(53.5406, 11.0)
);

final LineDrawable line = new LineDrawable(points, style);
Expand Down

0 comments on commit 4c14b98

Please sign in to comment.