Jump to content

LordDelphi

Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by LordDelphi

  1. Google cloud com ubuntu e wine. super barato e funciona redondo.
  2. It was excellent, I'm sure it will be very useful to everyone. Best addon for unigui so far. thank you so much!
  3. I'm trying to add a function to heatmap, but I can only put them and do not pull them. Anybody have any suggestions? procedure TUniGMap.AddHeatMap(aHeatMap: array of THeatMap); var i: Integer; lat, lng: string; Script: string; begin Script := 'HeatMap = new google.maps.visualization.HeatmapLayer({' + 'radius: ' + StringReplace(Format('%2.2f', [aHeatMap[0].Radius]), ',', '.', [rfReplaceAll]) + ',' + 'data: getPoints(),' + 'map: @googleMap@' + '});' + 'function getPoints() {' + 'return ['; for i := 0 to Length(aHeatMap) -1 do if i <> Length(aHeatMap) -1 then begin lat := StringReplace(Format('%2.6f', [aHeatMap.Latitude]), ',', '.', [rfReplaceAll]); lng := StringReplace(Format('%2.6f', [aHeatMap.Longitude]), ',', '.', [rfReplaceAll]); Script := Script + 'new google.maps.LatLng(' + lat + ', ' + lng + '),' end else begin lat := StringReplace(Format('%2.6f', [aHeatMap.Latitude]), ',', '.', [rfReplaceAll]); lng := StringReplace(Format('%2.6f', [aHeatMap.Longitude]), ',', '.', [rfReplaceAll]); Script := Script + 'new google.maps.LatLng(' + lat + ', ' + lng + ')' + '];' + '}'; end; ExecJScript(Script); end; procedure TUniGMap.RemoveHeatmap; begin ExecJScript( 'google.maps.event.clearInstanceListeners(HeatMap);' + 'HeatMap.setMap(null);'); end;
  4. da uma olhada na sessão de demos. la tem um exemplo funcional de como fazer isso.
  5. the purchase can be made in installments? sorry I'm using google translator.
  6. aqui uso graficos normalmente. usando delphi xe, unigui 0.95 e fastreport 4.
  7. Obrigado pela informação.
  8. é possivel comprar o unigui parcelado no cartão de credito?
  9. by credit card is possible to buy in installments?
  10. exatamente. só não use variaveis glogais no MainModule.
  11. do not forget to also copy the folder "uni-0.96.0.1068"
  12. se interessar eu fiz uma integração com o moip
  13. could someone upload again the components?
  14. desculpe pela demora em responder . recebi sim amigo. muito obrigado mesmo. qq coisa em q eu possa lhe ser util estou a disposição.
  15. Alguem que tenha essa versão guardada q possa me passar por email? os dois instaladores se possivel. pode mandar para ajlsj@msn.com desde já agradeço.
  16. tb creio q deve aparecer uma novidade positiva. depois de acompanhar o progresso da ferramenta por 2 anos, seria uma pena q a mesma fose descontinuada logo agora as vesperas de uma versão 1.0. versão essa q anceio a tempos para poder abandonar de vez o EWF.
  17. feliz ano novo a todos. e que o unigui finalmente saia e se torne o sucesso que todos esperamos.
  18. a very interesting code. There is something like this to do the opposite? Delphi receive a value from javascript.
  19. it is possible to make it some kind of communication between a flash file and unigui?
×
×
  • Create New...