Posts by Lucas Spielmann • 152 points
17 posts
-
0
votes0
answers114
viewsQ: View video streaming using RTSP protocol
Hi, I’m trying to display the image of an IP camera that uses rtsp protocol. I tested using VLC (video software) and it worked, but I need to display on a web page.
-
-1
votes2
answers233
viewsA: Add Download to ajax
Good afternoon, Got this way in my application. http://blog.astraube.eti.br/2012/04/exibir-loading-nas-requisicoes-ajax/…
-
-1
votes2
answers2604
viewsA: How to Trade Icon Bookmark Google Maps API V3
Here’s an example I used for my system: https://developers.google.com/maps/documentation/javascript/custom-markers?hl=pt-br Use this property: var image = new…
javascriptanswered Lucas Spielmann 152 -
-4
votes2
answers2898
viewsQ: Convert minutes to hours
I need to convert two minutes values to hours using PHP. valor1 = 278 min valor2 = 1161 min
phpasked Lucas Spielmann 152 -
3
votes1
answer100
viewsQ: Mysql and PHP grouping
I need to group a query with a detail, the grouping should be done only when the information is repeated in sequence, for example: id nome 1 lucas 2 lucas 3 marcos 4 lucas 5 marcos In the example…
-
0
votes2
answers205
viewsA: API maps display address
Solved the problem this way, but I identified that the same position (latitude and longitude) inform different addresses in each query, will be an API bug or something wrong in the script?…
-
-1
votes2
answers205
viewsQ: API maps display address
Today in my system I am displaying as reference point data already registered in the system based on latitude and longitude. I would like the script to find the reference provided by the maps API…
-
1
votes1
answer380
viewsA: Database Modeling (Entity Relationship Model)
There is no standard for the modeling format, now this missing identification of the relationship between entities, there are good practices to identify them as: id_group for a foreign key of the…
-
0
votes0
answers416
viewsQ: Sum PHP and Mysql hours
I picked up a project in progress, a tracking system that has workweek calculation. The system calculates right, but sometimes adding up time of the stationary vehicle and walking sum 24 hours and…
-
1
votes1
answer128
viewsQ: Mysql cleaning of logs
On my Mysql server the myaccess.log file located in Mysql/logs/ is of a large size, around 30GB. I would like if possible to reset this file, but I need to make sure it doesn’t compromise database…
mysqlasked Lucas Spielmann 152 -
0
votes1
answer367
viewsQ: Onclick in Marker in the Maps API
Hello, how do I run onclick on a map marketer? My code is this: var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: andando, shape: shape, title: beach[0], html: beach[5],…
-
4
votes1
answer1191
viewsQ: How to change font properties in javascript
I need to change the font format and play up the image icon. Text displayed by: label: beach[7] for (var i = 0; i < locations.length; i++) { var beach = locations[i]; var myLatLng = new…
-
0
votes1
answer523
viewsQ: API Google Maps + PHP
I need $Ig to be = 0 the icons to be a type, when $Ig= 1 the icons to be another type, another image in the case. follows code below: <?php include "../../conexaomaps.php";?> <!DOCTYPE…
-
0
votes1
answer73
viewsQ: How to set different icons on the map at the beginning and end of the route?
I’m developing a tracking system and I need you to consult the route the vehicle went through. I want the initial and final point to be identified with another icon according to the image. It also…
-
0
votes1
answer168
viewsA: API Google Maps Bookmark
See if it’s possible to understand what I’ve been trying to do. Thank you.…
-
0
votes3
answers156
viewsA: How can I capture the names of an html form and put in a variable in Javascript
Good night, it’s simple: var nome = document.getElementByName('nome_do_input').value;
-
0
votes1
answer168
viewsQ: API Google Maps Bookmark
Good night Srs. I am trying to use a marker for each point coming from the database in the code below: In this code there is already the mapping of the route traveled using the Lat and longitude…