- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我在 map 上绘制了 12 个标记,然后对于这些标记中的每一个,我都有 12 个对话框弹出并显示标记位置的地址。我在想一定有更好的方法来做到这一点,所以我一直在尝试创建一个列表来保存所有标记,并在点击时将列表中的标记传递到对话框中,所以我不必12 个独立的对话框。
目前我的标记被绘制到屏幕上,但是当标记被粘贴时对话框不显示,但是当我使用 12 个单独的对话框时它会显示。谁能指出问题所在的正确方向。
private List<Marker> markers = new ArrayList<Marker>();
//sets the default map location to glasgow
double defaultLat = 55.85432829452839;
double defaultLng = -4.268357989501965;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_muc_main);
//get drawable IDs
icoUser = R.drawable.yellow_point;
icoScotstoun = R.drawable.squash;
icoIbrox = R.drawable.rugby;
icoSecc = R.drawable.boxing;
icoKelvingrove = R.drawable.bowls;
icoHockey = R.drawable.hockey;
icoVeledrome = R.drawable.athetics;
icoCeltic = R.drawable.party;
icoTollcross = R.drawable.aqua;
icoHampden = R.drawable.athetics;
icoCathkin = R.drawable.cycleing;
icoStrathclyde = R.drawable.tri;
icoEdinburgh = R.drawable.athetics;
icoDundee = R.drawable.shooting;
//ArrayAdapter <String> adapter = new ArrayAdapter<String>(MucMainActivity.this, android.R.layout.simple_spinner_item, paths);
ArrayAdapter <String> adapter = new ArrayAdapter<String>(MucMainActivity.this, R.layout.spinner_layout, maptypes);
mapTypeSpinner = (Spinner) findViewById(R.id.spinner1);
mapTypeSpinner.setAdapter(adapter);
mapTypeSpinner.setOnItemSelectedListener(this);
//checks if the map has been instantiated or not if it hasn't then the map gets istantiated
if(mMap == null)
{
//passes the map fragment ID from the layout XML and casts it to a map fragment object
//and gets the google map object.
mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
}
if(mMap != null)
{
defaultSetting();
addListenerOnChkIos();
mMap.setOnMarkerClickListener(this);
}
//showUserLocation();
}
//@Override
// public boolean onCreateOptionsMenu(Menu menu)
//{
// Inflate the menu; this adds items to the action bar if it is present.
//getMenuInflater().inflate(R.menu.muc_main, menu);
//return true;
//}
@Override
public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2, long arg3)
{
// TODO Auto-generated method stub
int position = mapTypeSpinner.getSelectedItemPosition();
switch(position)
{
case 0:
mMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
break;
case 1:
mMap.setMapType(GoogleMap.MAP_TYPE_TERRAIN);
break;
case 2:
mMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
break;
}
}
@Override
public void onNothingSelected(AdapterView<?> arg0)
{
// TODO Auto-generated method stub
}
private void showUserLocation()
{
//get location manager
locMan = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
//get last location
Location lastLoc = locMan.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
double lat = lastLoc.getLatitude();
double lng = lastLoc.getLongitude();
//create LatLng
LatLng lastLatLng = new LatLng(lat, lng);
//remove any existing marker
if(marUser!=null) marUser.remove();
//create and set marker properties
marUser = mMap.addMarker(new MarkerOptions()
.position(lastLatLng)
.title("You are here")
.icon(BitmapDescriptorFactory.fromResource(icoUser)));
//move to location
mMap.animateCamera(CameraUpdateFactory.newLatLng(lastLatLng), 1000, null);
}
public void defaultSetting()
{
//sets the map type
mMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
// sets the default location of the map to Glasgow
mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(defaultLat, defaultLng), 12.0f), null );
//mMap.animateCamera(CameraUpdateFactory.newLatLng(new LatLng(55.85432829452839, -4.268357989501965)), 3000, null);
//mMap.addMarker(new MarkerOptions().position(new LatLng(defaultLat,defaultLng)).title("hello"));
addMarkers();
}
public void addMarkers()
{
for ( int i = 0; i < 11; i++)
{
red = mMap.addMarker(new MarkerOptions().position(new LatLng(55.88069,-4.34025)).icon(BitmapDescriptorFactory.fromResource(icoScotstoun)));
markers.add(red);
blue = mMap.addMarker(new MarkerOptions().position(new LatLng(55.85360,-4.30454)).icon(BitmapDescriptorFactory.fromResource(icoIbrox)));
markers.add(blue);
green = mMap.addMarker(new MarkerOptions().position(new LatLng(55.86070,-4.28761)).icon(BitmapDescriptorFactory.fromResource(icoSecc)));
markers.add(green);
yellow = mMap.addMarker(new MarkerOptions().position(new LatLng(55.86782,-4.28875)).icon(BitmapDescriptorFactory.fromResource(icoKelvingrove)));
markers.add(yellow);
brown = mMap.addMarker(new MarkerOptions().position(new LatLng(55.84496,-4.23671)).icon(BitmapDescriptorFactory.fromResource(icoHockey)));
markers.add(brown);
pink = mMap.addMarker(new MarkerOptions().position(new LatLng(55.84496,-4.23671)).icon(BitmapDescriptorFactory.fromResource(icoVeledrome)));
markers.add(pink);
purple = mMap.addMarker(new MarkerOptions().position(new LatLng(55.84959,-4.20555)).icon(BitmapDescriptorFactory.fromResource(icoCeltic)));
markers.add(purple);
orange = mMap.addMarker(new MarkerOptions().position(new LatLng(55.84505,-4.17607)).icon(BitmapDescriptorFactory.fromResource(icoTollcross)));
markers.add(orange);
cyan = mMap.addMarker(new MarkerOptions().position(new LatLng(55.82570,-4.25239)).icon(BitmapDescriptorFactory.fromResource(icoHampden)));
markers.add(cyan);
magenta = mMap.addMarker(new MarkerOptions().position(new LatLng(55.79550,-4.22329)).icon(BitmapDescriptorFactory.fromResource(icoCathkin)));
markers.add(magenta);
olive = mMap.addMarker(new MarkerOptions().position(new LatLng(55.78529,-4.01481)).icon(BitmapDescriptorFactory.fromResource(icoStrathclyde)));
markers.add(olive);
darkBlue = mMap.addMarker(new MarkerOptions().position(new LatLng(55.93920,-3.17273)).icon(BitmapDescriptorFactory.fromResource(icoEdinburgh)));
markers.add(darkBlue);
LightGreen = mMap.addMarker(new MarkerOptions().position(new LatLng(56.49302,-2.74663)).icon(BitmapDescriptorFactory.fromResource(icoDundee)));
markers.add(LightGreen);
//dundeeM = mMap.addMarker(new MarkerOptions().position(new LatLng(56.49302,-2.74663)).title("DUNDEE"));
}
markers.size(); }
@Override
public boolean onMarkerClick(Marker marker)
{
if(marker.equals(marker.getId()))
{
// Create custom dialog object
final Dialog dialog = new Dialog(MucMainActivity.this);
// Include dialog.xml file
dialog.setContentView(R.layout.custom);
// Set dialog title
dialog.setTitle(marker.getTitle());
// set values for custom dialog components - text, image and button
TextView text = (TextView) dialog.findViewById(R.id.textDialog);
text.setText("Cathkin Braes Country Park" + "\n"+ "cathkin Road" + "\n" + "Glasgow" + "\n" + "G45");
ImageView image = (ImageView) dialog.findViewById(R.id.imageDialog);
image.setImageResource(R.drawable.biking);
dialog.show();
Button declineButton = (Button) dialog.findViewById(R.id.declineButton);
// if decline button is clicked, close the custom dialog
declineButton.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
// Close dialog
dialog.dismiss();
}
});
}
return true;
}
最佳答案
方法内部
public boolean onMarkerClick(Marker marker)
你有条件检查:
if(marker.equals(marker.getId()))
尝试删除它。您将标记存储在开头定义的私有(private)成员中
private List<Marker> markers = new ArrayList<Marker>();
所以我不明白为什么要检查标记是否等于标记 ID。
希望对您有所帮助。
关于javascript - 优化安卓代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20623790/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!