com.google.maps.routeoptimization.v1.LocationOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-maps-routeoptimization-v1 Show documentation
Show all versions of proto-google-maps-routeoptimization-v1 Show documentation
Proto library for google-maps-routeoptimization
The newest version!
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/maps/routeoptimization/v1/route_optimization_service.proto
// Protobuf Java Version: 3.25.5
package com.google.maps.routeoptimization.v1;
public interface LocationOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.maps.routeoptimization.v1.Location)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The waypoint's geographic coordinates.
*
*
* .google.type.LatLng lat_lng = 1;
*
* @return Whether the latLng field is set.
*/
boolean hasLatLng();
/**
*
*
*
* The waypoint's geographic coordinates.
*
*
* .google.type.LatLng lat_lng = 1;
*
* @return The latLng.
*/
com.google.type.LatLng getLatLng();
/**
*
*
*
* The waypoint's geographic coordinates.
*
*
* .google.type.LatLng lat_lng = 1;
*/
com.google.type.LatLngOrBuilder getLatLngOrBuilder();
/**
*
*
*
* The compass heading associated with the direction of the flow of traffic.
* This value is used to specify the side of the road to use for pickup and
* drop-off. Heading values can be from 0 to 360, where 0 specifies a heading
* of due North, 90 specifies a heading of due East, etc.
*
*
* optional int32 heading = 2;
*
* @return Whether the heading field is set.
*/
boolean hasHeading();
/**
*
*
*
* The compass heading associated with the direction of the flow of traffic.
* This value is used to specify the side of the road to use for pickup and
* drop-off. Heading values can be from 0 to 360, where 0 specifies a heading
* of due North, 90 specifies a heading of due East, etc.
*
*
* optional int32 heading = 2;
*
* @return The heading.
*/
int getHeading();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy