我想在 android 应用程序中发布 geosever 层,使用 arcgis SDK,我已经完成了代码但它不起作用,请告诉我我做错了啥?

Posted

技术标签:

【中文标题】我想在 android 应用程序中发布 geosever 层,使用 arcgis SDK,我已经完成了代码但它不起作用,请告诉我我做错了啥?【英文标题】:I want to publish geosever layer in android app, using arcgis SDK, i have done code but it is not working, please tell me what i am doing wrong?我想在 android 应用程序中发布 geosever 层,使用 arcgis SDK,我已经完成了代码但它不起作用,请告诉我我做错了什么? 【发布时间】:2017-09-18 07:22:53 【问题描述】:

我是第一次做 android 编程,我想使用 ArcGis SDK 地图层显示一个 GeoServer 层。我已经完成了代码,但它不起作用,请告诉我我做错了什么。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_
android:layout_
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.subrata.mymap.MainActivity">

<com.esri.android.map.MapView
    android:id="@+id/map"
    android:layout_
    android:layout_
    mapoptions.MapType="Aerial"
    mapoptions.center="28, 77"
    mapoptions.ZoomLevel="10">
</com.esri.android.map.MapView>
</RelativeLayout>

mainactivity.java

package com.example.subrata.mymap;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import com.esri.android.map.MapView;
import com.esri.android.map.ogc.WMSLayer;


public class MainActivity extends AppCompatActivity 
MapView mMapView;
WMSLayer wmsLayer;
String wmsURL;

@Override
protected void onCreate(Bundle savedInstanceState) 
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mMapView = (MapView)findViewById(R.id.map);

    wmsURL = "http://localhost:8081/geoserver/NFR-SR/wms";
    wmsLayer = new WMSLayer(wmsURL);
    wmsLayer.setImageFormat("application/openlayers");
    // available layers
    String[] visibleLayers = "NFR-SR:Ridgeline_SR";
    wmsLayer.setVisibleLayer(visibleLayers);
    wmsLayer.setOpacity(0.5f);
    mMapView.addLayer(wmsLayer);


    mMapView.setEsriLogoVisible(false);
    mMapView.enableWrapAround(true);


@Override
public boolean onCreateOptionsMenu(Menu menu) 
    // Inflate the menu; this adds items to the action bar if it is present.
   getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;


@Override
public boolean onOptionsItemSelected(MenuItem item) 
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) 
        return true;
    

    return super.onOptionsItemSelected(item);


【问题讨论】:

【参考方案1】:

在没有任何日志或解释的情况下,无法真正说出不工作的意思。 以下是一些可能的原因:

    无法访问 url http://localhost:8081/geoserver/NFR-SR/wms 的服务器 图层名称 NFR-SR:Ridgeline_SR 未找到 地图服务不支持应用程序/openlayers 它甚至可能正在工作,但您正在查看不包含任何数据的地图范围。

【讨论】:

最有可能是 1 和 3 - 除非您在手机上运行 GeoServer,否则它的地址不会是 localhost

以上是关于我想在 android 应用程序中发布 geosever 层,使用 arcgis SDK,我已经完成了代码但它不起作用,请告诉我我做错了啥?的主要内容,如果未能解决你的问题,请参考以下文章

我想在 Unity3D Android 应用程序中格式化输入字段

我想在 Firebase onMessage 接收方法上播放自定义通知音,当锁定屏幕 android 手机时

想在 Android 中使用 Python 库

我想在 android 中更改 Tabbed Child Activity 的标题

我想在 Android Studio 中给出经度和纬度,我手机的 gps 会跳到那个位置

我想在我的 Android 游戏中播放音乐以及分析声音数据。使用 Unity C#