• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java Builder类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.google.android.gms.maps.model.LatLngBounds.Builder的典型用法代码示例。如果您正苦于以下问题:Java Builder类的具体用法?Java Builder怎么用?Java Builder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Builder类属于com.google.android.gms.maps.model.LatLngBounds包,在下文中一共展示了Builder类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: addPanPropertiesToMap

import com.google.android.gms.maps.model.LatLngBounds.Builder; //导入依赖的package包/类
private void addPanPropertiesToMap() {
	LatLngBounds bounds = null;
	Builder latLngBoundBuilder = new LatLngBounds.Builder();
	if (punchLocationCollection != null && punchLocationCollection.size() > 0) {
		int totalLocations = punchLocationCollection.size();
		for (int currentLocation = 0; currentLocation < totalLocations; currentLocation++) {
			LatLng latLng = new LatLng(Double.parseDouble(punchLocationCollection.get(currentLocation).getLatitude()), Double.parseDouble(punchLocationCollection.get(currentLocation)
					.getLongitude()));
			latLngBoundBuilder = latLngBoundBuilder.include(latLng);
		}
	}

	if (deviceCurrentLocation != null) {
		latLngBoundBuilder.include(new LatLng(deviceCurrentLocation.getLatitude(), deviceCurrentLocation.getLongitude()));
	}

	// Build the map with the bounds that encompass all the
	// specified location as well the current location
	bounds = latLngBoundBuilder.build();

	mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 50));
	// Zoom in, animating the camera.
	// mMap.animateCamera(CameraUpdateFactory.zoomTo(50), 2000, null);
}
 
开发者ID:appez,项目名称:appez-android,代码行数:25,代码来源:SmartMapHandlerActivity.java


示例2: JSONArray2LatLngBounds

import com.google.android.gms.maps.model.LatLngBounds.Builder; //导入依赖的package包/类
public static LatLngBounds JSONArray2LatLngBounds(JSONArray points) throws JSONException {
  List<LatLng> path = JSONArray2LatLngList(points);
  Builder builder = LatLngBounds.builder();
  int i = 0;
  for (i = 0; i < path.size(); i++) {
    builder.include(path.get(i));
  }
  return builder.build();
}
 
开发者ID:AdrianBZG,项目名称:PhoneChat,代码行数:10,代码来源:PluginUtil.java


示例3: convertToLatLngBounds

import com.google.android.gms.maps.model.LatLngBounds.Builder; //导入依赖的package包/类
public static  LatLngBounds convertToLatLngBounds(List<LatLng> points) {
  LatLngBounds.Builder latLngBuilder = LatLngBounds.builder();
  Iterator<LatLng> iterator = points.listIterator();
  while (iterator.hasNext()) {
    latLngBuilder.include(iterator.next());
  }
  return latLngBuilder.build();
}
 
开发者ID:AdrianBZG,项目名称:PhoneChat,代码行数:9,代码来源:PluginUtil.java


示例4: onMapChange

import com.google.android.gms.maps.model.LatLngBounds.Builder; //导入依赖的package包/类
@Override
public void onMapChange(List<Node> nodes, List<? extends Edge> edges) {
	
	Builder bounds = LatLngBounds.builder();
	boolean hasBounds = false;
	
	for (Node n: nodes) {
		Marker m = gmap.addMarker(new MarkerOptions()
							.position(toGms(n.location))
							.title(n.name)
							.snippet(n.description));
		
		hasBounds = true;
		bounds.include(toGms(n.location));
		markers.put(m, n);
	}
	
	
	for (Edge e: edges) {
		gmap.addPolyline(new PolylineOptions()
						.add(toGms(e.nodeA.location), toGms(e.nodeB.location))
						.color(getColor(e.type)));
	}
	
	if (hasBounds) {
		gameBounds = bounds.build();
		
		if (zoom == null) {
			zoom = Zoom.ToGame;
		}
		
		zoomMap();
	}
}
 
开发者ID:jakobwenzel,项目名称:rallye-android-client,代码行数:35,代码来源:GameMapFragment.java


示例5: onMarkerClick

import com.google.android.gms.maps.model.LatLngBounds.Builder; //导入依赖的package包/类
@Override
public boolean onMarkerClick(Marker marker) {
	
	Node source = markers.get(marker),
			target;
	Builder bounds = LatLngBounds.builder();
	ArrayList<Node> targets = new ArrayList<Node>();
	
	bounds.include(toGms(source.location));
	
	for (Edge e: source.getEdges()) {
		target = e.getOtherNode(source);
		targets.add(target);
		bounds.include(toGms(target.location));
	}
	Log.i(THIS, "found "+ targets.size() +" targets/edges");
	
	for (Entry<Marker, Node> m: markers.entrySet()) {
		Marker current = m.getKey();
		boolean cond = targets.contains(m.getValue());
		current.setVisible(cond);
	}
	marker.setVisible(true);
	
	zoom = Zoom.ToBounds;
	currentBounds = bounds.build();
	zoomMap();
	marker.showInfoWindow();
	
	return true;
}
 
开发者ID:jakobwenzel,项目名称:rallye-android-client,代码行数:32,代码来源:GameMapFragment.java


示例6: doAnimateCameraToIncludePosition

import com.google.android.gms.maps.model.LatLngBounds.Builder; //导入依赖的package包/类
private void doAnimateCameraToIncludePosition(GoogleMap map, LatLng position) {
    map.animateCamera(CameraUpdateFactory.newLatLngBounds(
            new Builder().include(map.getCameraPosition().target).include(position).build(),
            mContext.getResources().getDimensionPixelOffset(R.dimen.touch_target_min_size)));
}
 
开发者ID:pushbit,项目名称:sprockets-android,代码行数:6,代码来源:GoogleMaps.java


示例7: onLayersUpdate

import com.google.android.gms.maps.model.LatLngBounds.Builder; //导入依赖的package包/类
/** Called when the user confirms layer selection in LayersDialog */
public void onLayersUpdate(List<String> enabledLayers) {
	// Clear the map
	gmap.clear();
	
	// If no layers at all were selected, then reset the camera and return
	if (enabledLayers.size() == 0) {
		gmap.animateCamera(CameraUpdateFactory.newLatLngZoom(
				new LatLng(mpd.PURDUE_CENTER_LAT, mpd.PURDUE_CENTER_LNG),
				mpd.PURDUE_CAMPUS_ZOOM));
		return;
	}
	
	// Create a camera update bounds which will be updated as we add pins
	LatLngBounds.Builder latlngbuilder = LatLngBounds.builder();
	
	// The list of layers contains each layer the user has selected.
	// If the user selects multiple layers then they should be displayed simultaneously
	for (String i : enabledLayers) {
			
		for (LatLng loc : mpd.getLayerPoints(i)) {
			// Calculate the distance between the user's location and the pin (in meters)
			int dBetween = 0;
			if (gmap.getMyLocation() != null) {
				double dBetweenD = MapData.distanceBetween(gmap.getMyLocation().getLatitude(), 
						gmap.getMyLocation().getLongitude(), loc.latitude, loc.longitude) * 1000;
				// Cast it as an int to chop of the decimal as we really don't care about anything less than 1 meter
				dBetween = (int) dBetweenD;
			}
			
			// Create a new marker at that position with the title set as the distance
			gmap.addMarker(new MarkerOptions()
				.position(loc)
				.title("" + dBetween + " m"));
			latlngbuilder.include(loc);
		}
		
	}
	
	// Animate the camera so it includes all the new pins
	gmap.animateCamera(CameraUpdateFactory.newLatLngBounds(latlngbuilder.build(), 300));
}
 
开发者ID:Purdue-ACM-SIGAPP,项目名称:Purdue-App-Old,代码行数:43,代码来源:MapActivity.java


示例8: seleccionarProximidad

import com.google.android.gms.maps.model.LatLngBounds.Builder; //导入依赖的package包/类
/**
 * Seleccion de proximidad de paradas
 */
public void seleccionarProximidad() {

    final CharSequence[] items = {context.getString(R.string.proximidad_1), context.getString(R.string.proximidad_2), context.getString(R.string.proximidad_3)};

    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setTitle(R.string.proximidad);

    builder.setItems(items, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int item) {

            if (item == 0) {

                context.distancia = DISTACIA_CERCANA;
                miLocalizacion(true);

            } else if (item == 1) {

                context.distancia = DISTACIA_MEDIA;
                miLocalizacion(true);

            } else if (item == 2) {

                context.distancia = DISTACIA_LEJOS;
                miLocalizacion(true);

            }

        }
    });

    AlertDialog alert = builder.create();

    alert.show();

}
 
开发者ID:alberapps,项目名称:tiempobus,代码行数:39,代码来源:ParadasCercanas.java



注:本文中的com.google.android.gms.maps.model.LatLngBounds.Builder类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ProjectInternal类代码示例发布时间:2022-05-23
下一篇:
Java JavaSimpleType类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap