Friday, 15 May 2015

c# - Google Distance Matrix Usage explanation -



c# - Google Distance Matrix Usage explanation -

google distance matrix say:

usage limits

each query sent distance matrix api limited number of allowed elements, number of origins times number of destinations defines number of elements.

the distance matrix api has next limits in place:

100 elements per query. 100 elements per 10 seconds. 2 500 elements per 24 hr period. google maps api business customers have higher limits:

625 elements per query. 1 000 elements per 10 seconds. 100 000 elements per 24 hr period. maps api business customers can purchase additional quota contacting google enterprise sales business relationship manager.

what defination of elements? meant 100 elements per query , 100 elements per 10 seconds? can show driving distance on html table link google map? i.e on web page, have 1 columns inspector name , 1 column distance in km , 1 column map icon nevigate user google map after click on it. @ 1 time, user can display 200 inspectors on web page after quering database. , @ 1 time there might on 100 users using page. there restrictions on using json distance matrix without api key?

what defination of elements?

an element distance calculation. why "the number of origins times number of destinations defines number of elements.". if request distance point b, you're making 1x1 request, totaling 1 element. if request distance b, c , d, 1x3 = 3 elements.

what meant 100 elements per query , 100 elements per 10 seconds?

you can create 10x10 elements or 10 1x10 elements query every 10 seconds.

can show driving distance on html table link google map? i.e on web page, have 1 columns inspector name , 1 column distance in km , 1 column map icon nevigate user google map after click on it.

well, yes, that's doable, think it's outside scope of particular thread. has little nil google maps api: have parse response , render table yourself.

c# asp.net google-maps maps gis

No comments:

Post a Comment